yunohost-admin/app/.eslintrc.js
2024-05-30 00:39:20 +02:00

28 lines
735 B
JavaScript

module.exports = {
root: true,
env: {
es2021: true,
node: true,
},
extends: [
'plugin:vue/vue3-strongly-recommended',
'eslint:recommended',
'@vue/eslint-config-typescript',
'plugin:prettier/recommended',
],
rules: {
// 'no-unused-vars': [
// 'warn',
// { varsIgnorePattern: '^_', destructuredArrayIgnorePattern: '^_' },
// ],
// temp vue3 compat3
// '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
// 'vue/require-explicit-emits': 'off',
// 'vue/require-default-prop': 'off',
// 'no-unused-vars': 'off',
},
}