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.
npm init @eslint/config
1 parent beb8da5 commit d561f2eCopy full SHA for d561f2e
.eslintrc.json
@@ -0,0 +1,33 @@
1
+{
2
+ "env": {
3
+ "browser": true,
4
+ "es2021": true
5
+ },
6
+ "extends": [
7
+ "eslint:recommended",
8
+ "plugin:@typescript-eslint/recommended"
9
+ ],
10
+ "overrides": [],
11
+ "parser": "@typescript-eslint/parser",
12
+ "parserOptions": {
13
+ "ecmaVersion": "latest",
14
+ "sourceType": "module"
15
16
+ "plugins": [
17
+ "@typescript-eslint"
18
19
+ "rules": {
20
+ "indent": [
21
+ "error",
22
+ 4
23
24
+ "quotes": [
25
26
+ "double"
27
28
+ "semi": [
29
30
+ "always"
31
+ ]
32
+ }
33
+}
0 commit comments