Skip to content

Commit 406fbbb

Browse files
committed
chore: format
1 parent b739ff1 commit 406fbbb

File tree

74 files changed

+1173
-71
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+1173
-71
lines changed

Diff for: .eslintrc.json

+11-14
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,12 @@
77
"modules": true
88
}
99
},
10-
"plugins": [
11-
"@typescript-eslint/eslint-plugin",
12-
"prettier",
13-
],
10+
"plugins": ["@typescript-eslint/eslint-plugin", "prettier"],
1411
"env": {
1512
"node": true,
1613
"jest": true
1714
},
18-
"extends": [
19-
"eslint:recommended",
20-
"plugin:@typescript-eslint/recommended",
21-
"prettier",
22-
"prettier/@typescript-eslint"
23-
],
15+
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier", "prettier/@typescript-eslint"],
2416
"rules": {
2517
"@typescript-eslint/no-explicit-any": 0,
2618
"@typescript-eslint/explicit-function-return-type": 0,
@@ -40,15 +32,20 @@
4032
]
4133
},
4234
"settings": {
43-
"@typescript-eslint/camelcase": ["error", {"allow": ["__non_webpack_module__", "__non_webpack_require__", "^npm(_[a-z]+)+$"]}],
35+
"@typescript-eslint/camelcase": [
36+
"error",
37+
{
38+
"allow": ["__non_webpack_module__", "__non_webpack_require__", "^npm(_[a-z]+)+$"]
39+
}
40+
],
4441
"@typescript-eslint/class-name-casing": 2,
45-
"@typescript-eslint/indent": ["error", 2, {"SwitchCase": 1}],
46-
"@typescript-eslint/no-unused-vars": [2, {"args": "none", "ignoreRestSiblings": true}],
42+
"@typescript-eslint/indent": ["error", 2, { "SwitchCase": 1 }],
43+
"@typescript-eslint/no-unused-vars": [2, { "args": "none", "ignoreRestSiblings": true }],
4744
"array-bracket-spacing": 2,
4845
"arrow-spacing": 2,
4946
"comma-dangle": ["error", "always-multiline"],
5047
"computed-property-spacing": 2,
51-
"generator-star-spacing": ["error", {"before": true, "after": true}],
48+
"generator-star-spacing": ["error", { "before": true, "after": true }],
5249
"keyword-spacing": 2,
5350
"no-multiple-empty-lines": 2,
5451
"no-tabs": 2,

Diff for: .gitattributes

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
* text=auto eol=lf
2+
3+
/.yarn/** linguist-vendored

0 commit comments

Comments
 (0)