2025-01-08 17:31:54 +08:00
|
|
|
/* eslint-env node */
|
|
|
|
require('@rushstack/eslint-patch/modern-module-resolution')
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
extends: [
|
|
|
|
'eslint:recommended',
|
|
|
|
'plugin:vue/vue3-recommended',
|
|
|
|
'@electron-toolkit',
|
|
|
|
'@vue/eslint-config-prettier'
|
|
|
|
],
|
|
|
|
rules: {
|
|
|
|
'vue/require-default-prop': 'off',
|
2025-05-09 15:31:05 +08:00
|
|
|
'vue/multi-word-component-names': 'off',
|
|
|
|
"prettier/prettier": "off"
|
2025-01-08 17:31:54 +08:00
|
|
|
}
|
|
|
|
}
|