Created
September 5, 2023 13:31
-
-
Save Yecodeo/4c4868a287a28e2b5b1adc007890fe05 to your computer and use it in GitHub Desktop.
eslint typescript config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "root": true, | |
| "parser": "@typescript-eslint/parser", | |
| "plugins": ["@typescript-eslint", "prettier", "import"], | |
| "extends": ["eslint:recommended", "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended", "prettier"], | |
| "rules": { | |
| "no-empty-function": "off", | |
| "@typescript-eslint/no-empty-function": "off", | |
| "@typescript-eslint/no-var-requires": "off" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment