mirror of
https://github.com/GuerillaStudio/souvenir.git
synced 2025-01-20 15:50:20 +00:00
37 lines
596 B
JavaScript
37 lines
596 B
JavaScript
module.exports = {
|
|
env: {
|
|
es6: true,
|
|
node: true
|
|
},
|
|
extends: [
|
|
'standard',
|
|
'plugin:vue/essential'
|
|
],
|
|
globals: {
|
|
Atomics: 'readonly',
|
|
SharedArrayBuffer: 'readonly'
|
|
},
|
|
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'
|
|
]
|
|
|
|
}
|
|
}
|