ESLint: Temporarily disable non actionable rules
This temporarily disables jsx-a11y/no-autofocus rule. A comment marking the disabled rule was added and another disabled rule was moved under it as well.
This commit is contained in:
parent
6d0599ead4
commit
cf3b8acc6a
1 changed files with 3 additions and 2 deletions
|
|
@ -13,7 +13,6 @@ globals:
|
|||
plugins:
|
||||
- import
|
||||
rules:
|
||||
rulesdir/forbid-pf-relative-imports: off
|
||||
no-unused-vars: warn
|
||||
import/order:
|
||||
- error
|
||||
|
|
@ -40,7 +39,9 @@ rules:
|
|||
no-console: 2
|
||||
eqeqeq: error
|
||||
array-callback-return: warn
|
||||
jsx-a11y/no-autofocus: warn
|
||||
# Temporarily disabled
|
||||
jsx-a11y/no-autofocus: off
|
||||
rulesdir/forbid-pf-relative-imports: off
|
||||
overrides:
|
||||
- files: "**/*.ts?(x)"
|
||||
parser: "@typescript-eslint/parser"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue