aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2022-07-31 12:24:06 +0300
committerHenry Jameson <me@hjkos.com>2022-07-31 12:24:06 +0300
commit0cbfcb99a9ffaf771adbe37320bba157019f65ff (patch)
tree65c7502b24b261c1bf22484bf752120c5afa05a3 /.eslintrc.js
parentd083931ca83fd9983022c63d6cabf4f5fc62b13d (diff)
disable vue rule
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index b791c9aa..361cff5f 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -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
}
}