2019-06-04 11:30:56 +08:00
|
|
|
module.exports = {
|
2020-12-12 15:33:41 +08:00
|
|
|
extends: [
|
2021-01-15 19:08:31 +08:00
|
|
|
'plugin:vue/essential',
|
2020-12-12 15:33:41 +08:00
|
|
|
'@vue/standard',
|
2021-01-15 19:08:31 +08:00
|
|
|
'@vue/typescript/recommended',
|
2020-12-12 15:33:41 +08:00
|
|
|
'plugin:markdown/recommended'
|
|
|
|
],
|
2019-11-06 13:31:01 +08:00
|
|
|
rules: {
|
|
|
|
'vue/max-attributes-per-line': [
|
|
|
|
2,
|
|
|
|
{
|
|
|
|
singleline: 20,
|
|
|
|
multiline: {
|
|
|
|
max: 1,
|
|
|
|
allowFirstLine: false
|
|
|
|
}
|
|
|
|
}
|
2020-09-08 22:04:45 +08:00
|
|
|
],
|
2020-11-03 15:10:29 +08:00
|
|
|
'vue/no-multiple-template-root': 0,
|
|
|
|
'vue/no-lone-template': 0,
|
|
|
|
'vue/no-v-model-argument': 0,
|
|
|
|
'no-void': 0
|
2019-12-17 16:53:20 +08:00
|
|
|
},
|
2020-02-13 20:51:40 +08:00
|
|
|
overrides: [
|
2021-01-15 19:08:31 +08:00
|
|
|
{
|
|
|
|
files: ['light.ts'],
|
|
|
|
rules: {
|
|
|
|
'@typescript-eslint/explicit-module-boundary-types': 0
|
|
|
|
}
|
|
|
|
},
|
2020-12-12 15:33:41 +08:00
|
|
|
{
|
|
|
|
files: '**/*.md/*.js',
|
|
|
|
rules: {
|
|
|
|
'no-undef': 0
|
|
|
|
}
|
|
|
|
},
|
2020-06-18 23:38:54 +08:00
|
|
|
{
|
|
|
|
files: '*.spec.js',
|
|
|
|
globals: {
|
|
|
|
describe: 'readonly',
|
2020-11-03 11:53:37 +08:00
|
|
|
it: 'readonly',
|
|
|
|
expect: 'readonly'
|
2020-06-18 23:38:54 +08:00
|
|
|
}
|
2020-09-17 01:02:59 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
files: '*',
|
|
|
|
globals: {
|
|
|
|
__DEV__: 'readonly'
|
|
|
|
}
|
2020-02-13 20:51:40 +08:00
|
|
|
}
|
|
|
|
]
|
2019-11-06 13:31:01 +08:00
|
|
|
}
|