Created
October 27, 2019 14:43
-
-
Save nakatanakatana/ddb24b0623172f2c1bfc2301a05a3a86 to your computer and use it in GitHub Desktop.
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
Show hidden characters
{ | |
"extends": [ | |
"eslint:recommended", | |
"plugin:@typescript-eslint/recommended", | |
"plugin:@typescript-eslint/eslint-recommended", | |
"plugin:prettier/recommended", | |
"prettier/@typescript-eslint" | |
], | |
"plugins": ["@typescript-eslint"], | |
"parser": "@typescript-eslint/parser", | |
"env": {"browser": true, "node": true, "es6": true}, | |
"parserOptions": { | |
"sourceType": "module" | |
}, | |
"rules": { | |
"@typescript-eslint/no-explicit-any": "off" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment