yunohost-admin/app/.eslintrc.js

29 lines
735 B
JavaScript
Raw Normal View History

module.exports = {
root: true,
env: {
es2021: true,
2024-02-24 18:25:12 +01:00
node: true,
},
extends: [
'plugin:vue/vue3-strongly-recommended',
'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',
],
rules: {
// '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',
// 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
},
}