diff --git a/.eslintrc.js b/.eslintrc.js index b5a44a8..ddb4374 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -15,5 +15,9 @@ module.exports = { 'no-debugger': process.env.NODE_ENV === 'production' ? 'warn' : 'off', 'camelcase': 'off', 'vue/attribute-hyphenation': 'off', + //禁用命名规则 + 'vue/name-property-casing': 'off', + 'vue/multi-word-component-names': 'off', + 'vue/no-deprecated-scope-attribute': 'off', } }