This commit is contained in:
sajjadtalkhabi
2026-05-13 03:06:59 +03:30
parent d2a577f254
commit b8ced45375
142 changed files with 3706 additions and 905 deletions
+7 -4
View File
@@ -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',