wireguard-dashboard-admin/.eslintrc.js

16 lines
362 B
JavaScript
Raw Normal View History

2022-01-08 17:20:46 +08:00
module.exports = {
root: true,
extends: ['plugin:vue/vue3-recommended', 'plugin:prettier/recommended'],
rules: {
2022-05-06 22:34:55 +08:00
'prettier/prettier': 'warn',
2022-01-08 17:20:46 +08:00
'vue/valid-template-root': 'off',
'vue/no-multiple-template-root': 'off',
'vue/multi-word-component-names': [
'error',
{
ignores: ['index', '401', '404'],
},
],
},
}