mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
26 lines
559 B
JavaScript
26 lines
559 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
es2021: true,
|
|
node: true,
|
|
},
|
|
extends: [
|
|
'plugin:vue/vue3-recommended',
|
|
'eslint:recommended',
|
|
'@vue/eslint-config-typescript',
|
|
'plugin:prettier/recommended',
|
|
],
|
|
rules: {
|
|
'vue/no-v-html': 'off',
|
|
'no-unused-vars': 'off',
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'warn',
|
|
{
|
|
varsIgnorePattern: '^_',
|
|
argsIgnorePattern: '^_',
|
|
destructuredArrayIgnorePattern: '^_',
|
|
},
|
|
],
|
|
'no-console': ['error', { allow: ['warn', 'error'] }],
|
|
},
|
|
}
|