Skip to content

Commit f886634

Browse files
.eslintrc:add rules
1 parent fd127db commit f886634

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.eslintrc

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,16 @@
77
"plugin:@typescript-eslint/eslint-recommended",
88
"plugin:@typescript-eslint/recommended"
99
],
10-
"rules": {}
10+
"rules": {
11+
"curly": "error",
12+
"brace-style": "error",
13+
"@typescript-eslint/no-unused-vars": [
14+
"error",
15+
{
16+
"args": "none"
17+
}
18+
],
19+
"@typescript-eslint/explicit-function-return-type": "off",
20+
"@typescript-eslint/no-explicit-any": "off"
21+
}
1122
}

0 commit comments

Comments
 (0)