mirror of
https://github.com/GuerillaStudio/souvenir.git
synced 2024-11-08 09:11:52 +00:00
40 lines
665 B
JavaScript
40 lines
665 B
JavaScript
module.exports = {
|
|
'env': {
|
|
'es6': true,
|
|
'node': true
|
|
},
|
|
'extends': [
|
|
'standard',
|
|
'plugin:vue/essential'
|
|
],
|
|
'globals': {
|
|
'Atomics': 'readonly',
|
|
'SharedArrayBuffer': 'readonly'
|
|
},
|
|
'parserOptions': {
|
|
'ecmaVersion': 2018,
|
|
},
|
|
'plugins': [
|
|
'vue'
|
|
],
|
|
'rules': {
|
|
'no-console': 'off',
|
|
'no-debugger': 'off',
|
|
'vue/html-end-tags': 'error',
|
|
'vue/html-indent': [
|
|
'error',
|
|
2
|
|
],
|
|
'vue/require-prop-types': 'error',
|
|
'vue/attributes-order': 'error',
|
|
'vue/attribute-hyphenation': [
|
|
'error',
|
|
'always'
|
|
],
|
|
'vue/html-quotes': [
|
|
'error',
|
|
'double'
|
|
]
|
|
|
|
}
|
|
}
|