ci: Disable import/no-extraneous-dependencies in frontend tests (no-changelog) (#8182)

supersedes #8180
This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-12-29 10:45:55 +01:00
committed by GitHub
parent 4bad43dd66
commit 1286d6583c
5 changed files with 8 additions and 4 deletions

View File

@@ -21,6 +21,12 @@ module.exports = {
'n8n-local-rules/dangerously-use-html-string-missing': 'error',
},
},
{
files: ['**/*.test.ts', '**/test/**/*.ts', '**/__tests__/**/*.ts'],
rules: {
'import/no-extraneous-dependencies': 'off',
},
},
],
rules: {
@@ -53,6 +59,7 @@ module.exports = {
],
'vue/prop-name-casing': ['error', 'camelCase'],
'vue/attribute-hyphenation': ['error', 'always'],
'import/no-extraneous-dependencies': 'warn',
// TODO: fix these
'@typescript-eslint/no-unsafe-call': 'off',