c3lf-system-3/.eslintrc.js

36 lines
641 B
JavaScript
Raw Normal View History

2019-11-13 21:20:41 +00:00
module.exports = {
'env': {
'browser': true,
'es6': true
},
'extends': [
'eslint:recommended',
'plugin:vue/essential'
],
'globals': {
'Atomics': 'readonly',
'SharedArrayBuffer': 'readonly'
},
'plugins': [
'vue'
],
'rules': {
2019-11-14 18:30:00 +00:00
"no-console": "off",
2019-11-13 21:20:41 +00:00
'indent': [
'error',
2019-11-13 21:21:58 +00:00
2
2019-11-13 21:20:41 +00:00
],
'linebreak-style': [
2019-12-14 22:51:06 +00:00
'off',
2019-11-13 21:20:41 +00:00
'unix'
],
'quotes': [
'error',
'single'
],
'semi': [
'error',
'always'
]
}
};