We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d61d13 commit a0c0c72Copy full SHA for a0c0c72
.eslintignore
@@ -0,0 +1 @@
1
+.eslintrc.js
.eslintrc.js
@@ -1,4 +1,5 @@
module.exports = {
2
+ root: true,
3
extends: [
4
// https://eslint.org/docs/rules/
5
"eslint:recommended",
@@ -13,7 +14,9 @@ module.exports = {
13
14
// > Make sure to put it last, so it gets the chance to override other configs.
15
"prettier",
16
],
- plugins: [],
17
+ plugins: [
18
+ "@typescript-eslint",
19
+ ],
20
parser: "@typescript-eslint/parser",
21
parserOptions: {
22
project: "./tsconfig.json",
0 commit comments