funkwhale/front/.eslintrc.js

26 wiersze
422 B
JavaScript
Czysty Zwykły widok Historia

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