mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
fix: Disable @typescript-eslint/no-use-before-define
rule (no-changelog) (#8304)
This commit is contained in:
parent
2b98835bf4
commit
361cda6a7e
|
@ -36,6 +36,7 @@ module.exports = {
|
||||||
'vue/v-slot-style': 'error',
|
'vue/v-slot-style': 'error',
|
||||||
'vue/no-unused-components': 'error',
|
'vue/no-unused-components': 'error',
|
||||||
'vue/multi-word-component-names': 'off',
|
'vue/multi-word-component-names': 'off',
|
||||||
|
'@typescript-eslint/no-use-before-define': 'off',
|
||||||
'@typescript-eslint/no-explicit-any': 'error',
|
'@typescript-eslint/no-explicit-any': 'error',
|
||||||
'vue/component-name-in-template-casing': [
|
'vue/component-name-in-template-casing': [
|
||||||
'error',
|
'error',
|
||||||
|
|
|
@ -33,7 +33,6 @@ module.exports = {
|
||||||
'@typescript-eslint/no-unnecessary-type-assertion': 'warn',
|
'@typescript-eslint/no-unnecessary-type-assertion': 'warn',
|
||||||
'@typescript-eslint/no-unused-expressions': 'warn',
|
'@typescript-eslint/no-unused-expressions': 'warn',
|
||||||
'@typescript-eslint/no-unused-vars': 'warn',
|
'@typescript-eslint/no-unused-vars': 'warn',
|
||||||
'@typescript-eslint/no-use-before-define': 'warn',
|
|
||||||
'@typescript-eslint/no-var-requires': 'warn',
|
'@typescript-eslint/no-var-requires': 'warn',
|
||||||
'@typescript-eslint/prefer-nullish-coalescing': 'warn',
|
'@typescript-eslint/prefer-nullish-coalescing': 'warn',
|
||||||
'@typescript-eslint/prefer-optional-chain': 'warn',
|
'@typescript-eslint/prefer-optional-chain': 'warn',
|
||||||
|
|
Loading…
Reference in a new issue