diff --git a/tslint.json b/tslint.json deleted file mode 100644 index 5995b34..0000000 --- a/tslint.json +++ /dev/null @@ -1,35 +0,0 @@ -{ - "defaultSeverity": "error", - "extends": [ - "tslint:latest", - "tslint-config-prettier", - "tslint-eslint-rules", - "tslint-react-hooks" - ], - "linterOptions": { - "exclude": ["node_modules"] - }, - "rules": { - "no-constant-condition": true, - "no-console": false, - "interface-name": [true, "always-prefix"], - "object-curly-spacing": true, - "object-literal-sort-keys": false, - - "member-access": [true, "no-public"], - "no-var-keyword": true, - "typedef": [ - true, - "parameter", - "property-declaration", - "member-variable-declaration" - ], - "no-eval": true, - "no-parameter-reassignment": true, - "no-submodule-imports": false, - "no-unused-variable": true, - - "react-hooks-nesting": "error" - }, - "rulesDirectory": ["node_modules/tslint-eslint-rules/dist/rules"] -}