Skip to content

Commit 0822833

Browse files
committed
fixup! Modifies configs for preparation
1 parent 7eccaf2 commit 0822833

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

.eslintrc.json

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
11
{
22
"extends": [
33
"standard-kit/prettier",
4-
"standard-kit/prettier/node",
5-
"standard-kit/prettier/typescript"
4+
"standard-kit/prettier/typescript",
5+
"standard-kit/prettier/node"
6+
],
7+
"overrides": [
8+
{
9+
"files": ["*.ts", "*.tsx"],
10+
"rules": {
11+
"@typescript-eslint/explicit-function-return-type": "warn",
12+
"@typescript-eslint/no-dynamic-delete": "warn",
13+
"@typescript-eslint/strict-boolean-expressions": "warn",
14+
"@typescript-eslint/camelcase": "off"
15+
}
16+
}
617
],
718
"parserOptions": {
819
"project": "tsconfig.json"
@@ -11,9 +22,6 @@
1122
"simple-import-sort"
1223
],
1324
"rules": {
14-
"@typescript-eslint/explicit-function-return-type": "warn",
15-
"@typescript-eslint/strict-boolean-expressions": "warn",
16-
"@typescript-eslint/no-non-null-assertion": "off",
17-
"simple-import-sort/sort": "error"
25+
"simple-import-sort/imports": "error"
1826
}
19-
}
27+
}

0 commit comments

Comments
 (0)