2016-10-26 14:46:32 +00:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
parserOptions: {
|
2019-04-07 17:33:11 +00:00
|
|
|
parser: 'babel-eslint',
|
2016-10-26 14:46:32 +00:00
|
|
|
sourceType: 'module'
|
|
|
|
},
|
|
|
|
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
|
2019-04-07 17:33:11 +00:00
|
|
|
extends: [
|
|
|
|
'standard',
|
|
|
|
'plugin:vue/recommended'
|
|
|
|
],
|
2016-10-26 14:46:32 +00:00
|
|
|
// required to lint *.vue files
|
|
|
|
plugins: [
|
2019-04-07 17:33:11 +00:00
|
|
|
'vue'
|
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
|
|
|
|
'arrow-parens': 0,
|
|
|
|
// allow async-await
|
|
|
|
'generator-star-spacing': 0,
|
|
|
|
// allow debugger during development
|
2019-04-07 17:33:11 +00:00
|
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
|
2021-07-01 15:47:16 +00:00
|
|
|
'vue/require-prop-types': 0,
|
2021-11-20 14:38:01 +00:00
|
|
|
'vue/no-unused-vars': 0,
|
|
|
|
'no-tabs': 0
|
2016-10-26 14:46:32 +00:00
|
|
|
}
|
|
|
|
}
|