disable vue rule

This commit is contained in:
Henry Jameson 2022-07-31 12:24:06 +03:00
parent d083931ca8
commit 0cbfcb99a9
1 changed files with 2 additions and 1 deletions

View File

@ -21,6 +21,7 @@ module.exports = {
'generator-star-spacing': 0,
// allow debugger during development
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
'vue/require-prop-types': 0
'vue/require-prop-types': 0,
'vue/multi-word-component-names': 0
}
}