.eslintrc.json (643B)
1 { 2 "plugins": [ 3 "@typescript-eslint" 4 ], 5 "parser": "@typescript-eslint/parser", 6 "extends": [ 7 "eslint:recommended", 8 "plugin:@typescript-eslint/recommended", 9 "plugin:jsx-a11y/recommended", 10 "plugin:unicorn/recommended" 11 ], 12 "rules": { 13 "jsx-a11y/anchor-is-valid": "off", 14 "unicorn/prevent-abbreviations": "off", 15 "unicorn/filename-case": "off", 16 "unicorn/prefer-ternary": "off", 17 "unicorn/no-lonely-if": "off", 18 "unicorn/empty-brace-spaces": "off", 19 "unicorn/prefer-node-protocol": "off", 20 "unicorn/import-style": [ 21 "error", 22 { 23 "checkDynamicImport": false 24 } 25 ] 26 } 27 }