funquail/front/.eslintrc.js

26 lines
457 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',
'standard'
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
},
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
parser: '@babel/eslint-parser'
2021-04-25 18:23:27 +02:00
},
plugins: [
'vue'
],
rules: {
2021-12-06 11:35:20 +01: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
}
}