summaryrefslogtreecommitdiffstats
path: root/.eslintrc.js
diff options
context:
space:
mode:
authorDevlin Junker <devlin.junker@gmail.com>2022-10-02 20:43:11 -0700
committerBenjamin Brahmer <info@b-brahmer.de>2022-11-02 11:27:20 +0100
commita81cd40b00c8a004d844bed7fb697baf65b3d7e0 (patch)
tree88c254610dc14837cc9506a27a8916166fe85b37 /.eslintrc.js
parent08d12e500952dfca9730f6b4ab0255f3805f6452 (diff)
clean up linting errors
Signed-off-by: Devlin Junker <devlin.junker@gmail.com>
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index 53f17a942..3a85ff92d 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -10,6 +10,13 @@ module.exports = {
env: {
jest: true,
},
+ rules: {
+ // frustratingly this seems to error for all imports right now...
+ 'n/no-missing-import': 'off',
+
+ // need to warn on these because @nextcloud repeats some component names (Button, Content..)
+ 'vue/no-reserved-component-names': 'warn',
+ },
extends: [
'eslint:recommended',
'plugin:vue/base',