mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 05:39:16 +02:00
24 lines
359 B
JavaScript
24 lines
359 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: {
|
|
}
|
|
}
|