36 lines
No EOL
643 B
JavaScript
36 lines
No EOL
643 B
JavaScript
module.exports = {
|
|
'env': {
|
|
'browser': true,
|
|
'es6': true
|
|
},
|
|
'extends': [
|
|
'eslint:recommended',
|
|
'plugin:vue/essential'
|
|
],
|
|
'globals': {
|
|
'Atomics': 'readonly',
|
|
'SharedArrayBuffer': 'readonly'
|
|
},
|
|
'plugins': [
|
|
'vue'
|
|
],
|
|
'rules': {
|
|
"no-console": "off",
|
|
'indent': [
|
|
'error',
|
|
2
|
|
],
|
|
'linebreak-style': [
|
|
'error',
|
|
'unix'
|
|
],
|
|
'quotes': [
|
|
'error',
|
|
'single'
|
|
],
|
|
'semi': [
|
|
'error',
|
|
'always'
|
|
]
|
|
}
|
|
}; |