Skip to content

Commit 13eb581

Browse files
authored
chore(dependencies): update dependencies (#377)
1 parent 3e94950 commit 13eb581

File tree

21 files changed

+887
-457
lines changed

21 files changed

+887
-457
lines changed

.eslintrc

Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,50 @@
2121
"@typescript-eslint/adjacent-overload-signatures": "error",
2222
"@typescript-eslint/array-type": "off",
2323
"@typescript-eslint/ban-types": "off",
24-
"@typescript-eslint/class-name-casing": "error",
24+
"@typescript-eslint/no-unsafe-assignment": "off",
25+
"@typescript-eslint/no-unsafe-member-access": "off",
26+
"@typescript-eslint/no-unsafe-call": "off",
27+
"@typescript-eslint/no-unsafe-return": "off",
28+
"@typescript-eslint/explicit-module-boundary-types": "off",
29+
"@typescript-eslint/naming-convention": [
30+
"error",
31+
{
32+
"selector": "default",
33+
"format": ["camelCase"]
34+
},
35+
{
36+
"selector": "function",
37+
"format": ["PascalCase", "camelCase"]
38+
},
39+
{
40+
"selector": "variable",
41+
"format": ["camelCase", "UPPER_CASE", "PascalCase"]
42+
},
43+
{
44+
"selector": "parameter",
45+
"format": ["camelCase"],
46+
"leadingUnderscore": "allow"
47+
},
48+
{
49+
"selector": "property",
50+
"format": ["camelCase", "PascalCase"],
51+
"leadingUnderscore": "allow"
52+
},
53+
{
54+
"selector": "memberLike",
55+
"modifiers": ["private"],
56+
"format": ["camelCase"],
57+
"leadingUnderscore": "require"
58+
},
59+
{
60+
"selector": "typeLike",
61+
"format": ["PascalCase"]
62+
},
63+
{
64+
"selector": "enumMember",
65+
"format": ["PascalCase"]
66+
}
67+
],
2568
"@typescript-eslint/typedef": [
2669
"error",
2770
{

0 commit comments

Comments
 (0)