fix: disable rules

This commit is contained in:
Anthony Fu 2021-09-13 11:31:02 +08:00
parent 5c12c1f8c9
commit dcb4a67de2
2 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,8 @@ module.exports = {
],
overrides: basic.overrides,
rules: {
'import/named': 'off',
// TS
'no-useless-constructor': 'off',
'@typescript-eslint/semi': ['error', 'never'],

View File

@ -21,5 +21,7 @@ module.exports = {
'vue/max-attributes-per-line': ['warn', { singleline: 5 }],
'vue/html-self-closing': 'off',
'vue/no-v-html': 'off',
'vue/require-prop-types': 'off',
'vue/require-default-prop': 'off',
},
}