funquail/front/.eslintrc.js

27 lines
462 B
JavaScript
Raw Normal View History

2021-04-25 18:23:27 +02:00
module.exports = {
env: {
browser: true,
es6: true
},
extends: [
'plugin:vue/recommended',
2022-04-16 13:34:39 +02:00
'@vue/typescript/recommended',
'@vue/standard'
2021-04-25 18:23:27 +02:00
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
},
parserOptions: {
2022-02-21 20:08:44 +01:00
ecmaVersion: 2020,
2022-04-16 13:34:39 +02:00
sourceType: 'module'
2021-04-25 18:23:27 +02:00
},
plugins: [
'vue'
],
rules: {
2022-04-16 13:34:39 +02:00
'vue/no-v-html': 'off', // TODO: tackle this properly
'vue/no-use-v-if-with-v-for': 'off'
2021-04-25 18:23:27 +02:00
}
}