souvenir/.eslintrc.js
2021-10-14 02:18:34 +02:00

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'
]
}
}