init
This commit is contained in:
18
eslintrc.js
Normal file
18
eslintrc.js
Normal file
@@ -0,0 +1,18 @@
|
||||
module.exports = {
|
||||
root: true,
|
||||
env: {
|
||||
node: true
|
||||
},
|
||||
extends: ['plugin:vue/essential', '@vue/standard'],
|
||||
parserOptions: {
|
||||
parser: '@babel/eslint-parser'
|
||||
},
|
||||
rules: {
|
||||
indent: ['off', 2],
|
||||
'no-console': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||||
'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off',
|
||||
'space-before-function-paren': 0,
|
||||
'vue/multi-word-component-names': 'off',
|
||||
"no-unused-vars": 'off'
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user