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 11f0303Copy full SHA for 11f0303
.eslintrc.json
@@ -0,0 +1,37 @@
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
+ "linebreak-style": [
25
26
+ "unix"
27
28
+ "quotes": [
29
30
+ "double"
31
32
+ "semi": [
33
34
+ "always"
35
+ ]
36
+ }
37
+}
0 commit comments