2022-01-18 12:06:20 -03:00

22 lines
603 B
Plaintext

{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"root": true,
"env": { "browser": true, "node": true },
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:prettier/recommended"
],
"rules": {
"@typescript-eslint/await-thenable": "off",
"@typescript-eslint/restrict-template-expressions": "off"
},
"parserOptions": {
"ecmaVersion": "latest",
"project": "./tsconfig.json"
}
}