kopia lustrzana https://github.com/manuelkasper/sotlas-frontend
24 wiersze
423 B
JavaScript
24 wiersze
423 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
es2022: true,
|
|
browser: true
|
|
},
|
|
extends: [
|
|
'plugin:vue/essential'
|
|
],
|
|
rules: {
|
|
'vue/multi-word-component-names': 'off',
|
|
'vue/no-reserved-component-names': 'off',
|
|
'vue/no-unused-vars': 'off',
|
|
'indent': ['error', 2]
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 2022,
|
|
sourceType: 'module'
|
|
},
|
|
globals: {
|
|
COMMITHASH: true
|
|
}
|
|
}
|