2023-03-24 20:50:05 +01:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
env: {
|
2023-04-03 22:14:18 +02:00
|
|
|
es2021: true,
|
2024-02-24 18:25:12 +01:00
|
|
|
node: true,
|
2023-03-24 20:50:05 +01:00
|
|
|
},
|
|
|
|
extends: [
|
2024-03-11 14:56:25 +01:00
|
|
|
'plugin:vue/vue3-strongly-recommended',
|
2023-03-24 20:50:05 +01:00
|
|
|
'eslint:recommended',
|
2024-05-17 16:39:50 +02:00
|
|
|
'@vue/eslint-config-typescript',
|
2024-02-24 17:54:16 +01:00
|
|
|
'plugin:prettier/recommended',
|
2023-03-24 20:50:05 +01:00
|
|
|
],
|
|
|
|
rules: {
|
2024-03-11 14:56:25 +01:00
|
|
|
// 'no-unused-vars': [
|
|
|
|
// 'warn',
|
|
|
|
// { varsIgnorePattern: '^_', destructuredArrayIgnorePattern: '^_' },
|
|
|
|
// ],
|
|
|
|
// temp vue3 compat3
|
2024-05-17 16:39:50 +02:00
|
|
|
// 'vue/no-v-for-template-key-on-child': 'error',
|
|
|
|
// 'vue/no-v-for-template-key': 'off',
|
|
|
|
// 'vue/attribute-hyphenation': 'off',
|
|
|
|
// 'vue/v-on-event-hyphenation': 'off',
|
2024-03-11 14:56:25 +01:00
|
|
|
// temp flemme
|
2024-05-17 16:39:50 +02:00
|
|
|
// 'vue/require-explicit-emits': 'off',
|
|
|
|
// 'vue/require-default-prop': 'off',
|
|
|
|
// 'no-unused-vars': 'off',
|
2024-02-24 17:54:16 +01:00
|
|
|
},
|
2023-03-24 20:50:05 +01:00
|
|
|
}
|