2020-05-24 11:50:21 +02:00
|
|
|
module.exports = {
|
2022-11-15 09:36:54 +01:00
|
|
|
root: true,
|
2020-12-30 11:11:40 +01:00
|
|
|
env: {
|
2022-11-15 09:36:54 +01:00
|
|
|
node: true,
|
2020-12-30 11:11:40 +01:00
|
|
|
browser: true,
|
2022-11-15 09:36:54 +01:00
|
|
|
es2016: true
|
2020-12-30 11:11:40 +01:00
|
|
|
},
|
2022-11-15 09:36:54 +01:00
|
|
|
extends: ['eslint:recommended', 'plugin:vue/recommended', '@vue/typescript/recommended', 'prettier', 'plugin:import/recommended'],
|
|
|
|
parserOptions: {
|
|
|
|
ecmaVersion: 2020
|
|
|
|
},
|
|
|
|
plugins: ['vue', 'prettier'],
|
2020-12-30 11:11:40 +01:00
|
|
|
rules: {
|
|
|
|
'vue/require-default-prop': 'off',
|
2022-11-15 09:36:54 +01:00
|
|
|
'vue/multi-word-component-names': 'off',
|
|
|
|
'vue/first-attribute-linebreak': 'off',
|
|
|
|
'@typescript-eslint/explicit-module-boundary-types': 'off'
|
|
|
|
}
|
2021-01-27 13:24:23 +01:00
|
|
|
}
|