2016-10-26 14:46:32 +00:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
parserOptions: {
|
2022-12-08 19:08:18 +00:00
|
|
|
parser: '@babel/eslint-parser',
|
|
|
|
sourceType: 'module'
|
2016-10-26 14:46:32 +00:00
|
|
|
},
|
|
|
|
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
|
2022-12-08 19:08:18 +00:00
|
|
|
extends: ['plugin:vue/recommended', 'plugin:prettier/recommended'],
|
2016-10-26 14:46:32 +00:00
|
|
|
// required to lint *.vue files
|
2022-12-08 19:08:18 +00:00
|
|
|
plugins: ['vue', 'import'],
|
2016-10-26 14:46:32 +00:00
|
|
|
// add your custom rules here
|
2019-02-07 08:05:59 +00:00
|
|
|
rules: {
|
2016-10-26 14:46:32 +00:00
|
|
|
// allow paren-less arrow functions
|
2022-12-08 19:08:18 +00:00
|
|
|
'arrow-parens': 0,
|
2016-10-26 14:46:32 +00:00
|
|
|
// allow async-await
|
2022-12-08 19:08:18 +00:00
|
|
|
'generator-star-spacing': 0,
|
2016-10-26 14:46:32 +00:00
|
|
|
// allow debugger during development
|
2022-12-08 19:08:18 +00:00
|
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
|
|
|
|
'vue/require-prop-types': 0,
|
|
|
|
'vue/no-unused-vars': 0,
|
|
|
|
'no-tabs': 0,
|
|
|
|
'vue/multi-word-component-names': 0,
|
|
|
|
'vue/no-reserved-component-names': 0
|
|
|
|
}
|
|
|
|
}
|