Skip to content

Commit df9cef5

Browse files
committed
Update deps
1 parent c05dba2 commit df9cef5

7 files changed

Lines changed: 28597 additions & 41590 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@ jobs:
2222
- name: Install dependencies
2323
run: npm install
2424

25+
- name: Check types
26+
run: npm run typecheck
27+
2528
- name: Check code format
2629
run: npm run prettier
2730

.oxlintrc.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"$schema": "./node_modules/oxlint/configuration_schema.json",
3+
"categories": {
4+
"correctness": "off"
5+
},
6+
"ignorePatterns": ["dist"],
7+
"rules": {
8+
"no-undef": "off",
9+
"no-unused-vars": ["error", { "ignoreRestSiblings": true }],
10+
"no-var": "error",
11+
"no-const-assign": "error",
12+
"prefer-const": ["error", { "destructuring": "all" }],
13+
"curly": "error",
14+
"object-shorthand": "error",
15+
"eqeqeq": ["error", "always", { "null": "ignore" }],
16+
"no-unreachable": "error",
17+
"no-fallthrough": "error",
18+
"sort-imports": ["error", { "ignoreCase": true, "ignoreDeclarationSort": true }]
19+
}
20+
}

0 commit comments

Comments
 (0)