diff options
| author | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2021-12-21 15:28:25 +0000 |
|---|---|---|
| committer | LMBishop <13875753+LMBishop@users.noreply.github.com> | 2021-12-21 15:28:25 +0000 |
| commit | a8d3f95cf8038f24a760551ed8a3342251f81052 (patch) | |
| tree | 85bdedb2d1b6b17cdadd20e85a9774576f6fb63f /.eslintrc.json | |
| parent | e70fd3594cfa8e0e29c3e9fb25991a9bad048469 (diff) | |
Configure ESLint for TypeScript
Diffstat (limited to '.eslintrc.json')
| -rw-r--r-- | .eslintrc.json | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..eba937e --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,15 @@ +{ + "root": true, + "parser": "@typescript-eslint/parser", + "parserOptions": { + "ecmaVersion": 2021 + }, + "plugins": [ + "@typescript-eslint" + ], + "extends": [ + "eslint:recommended", + "plugin:@typescript-eslint/eslint-recommended", + "plugin:@typescript-eslint/recommended" + ] +} |
