Fix
This commit is contained in:
+7
-4
@@ -5,7 +5,7 @@ module.exports = {
|
||||
node: true,
|
||||
es2021: true,
|
||||
},
|
||||
plugins: ['prettier', 'unicorn', 'import'],
|
||||
plugins: ['prettier', 'unicorn', 'import', 'waterfall'],
|
||||
ignorePatterns: ['node_modules/', 'dist/', 'build/', '*.min.js'],
|
||||
parserOptions: {
|
||||
ecmaVersion: 2021,
|
||||
@@ -71,7 +71,10 @@ module.exports = {
|
||||
'unicorn/prefer-logical-operator-over-ternary': 'off',
|
||||
'unicorn/prefer-number-properties': 'off',
|
||||
'unicorn/prefer-ternary': 'off',
|
||||
'no-unused-vars': 'off',
|
||||
'no-unused-vars': ['error', { argsIgnorePattern: '^_', varsIgnorePattern: '^_' }],
|
||||
'waterfall/waterfall-imports': 'warn',
|
||||
'waterfall/waterfall-requires': 'warn',
|
||||
'waterfall/waterfall-objects': 'off',
|
||||
'no-irregular-whitespace': 'off',
|
||||
'no-empty': 'off',
|
||||
'import/extensions': 'off',
|
||||
@@ -80,9 +83,9 @@ module.exports = {
|
||||
'vue/html-self-closing': 'off',
|
||||
'vue/max-attributes-per-line': 'off',
|
||||
'vue/html-indent': 'off',
|
||||
'vue/no-unused-components': 'off',
|
||||
'vue/no-unused-components': 'error',
|
||||
'vue/no-reserved-component-names': 'off',
|
||||
'vue/no-unused-vars': 'off',
|
||||
'vue/no-unused-vars': 'error',
|
||||
'vue/require-v-for-key': 'off',
|
||||
'vue/require-toggle-inside-transition': 'off',
|
||||
'vue/require-valid-default-prop': 'off',
|
||||
|
||||
Reference in New Issue
Block a user