2024-07-08 16:24:56 +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',
|
2024-07-19 14:31:54 +08:00
|
|
|
'vue/multi-word-component-names': 'off',
|
|
|
|
'prettier/prettier': 'off'
|
2024-07-08 16:24:56 +08:00
|
|
|
}
|
|
|
|
}
|