kopia lustrzana https://dev.funkwhale.audio/funkwhale/funkwhale
27 wiersze
457 B
JavaScript
27 wiersze
457 B
JavaScript
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'
|
|
},
|
|
plugins: [
|
|
'vue'
|
|
],
|
|
rules: {
|
|
"vue/no-v-html": "off", // TODO: tackle this properly
|
|
"vue/no-use-v-if-with-v-for": "off"
|
|
}
|
|
}
|