Skip to content

Commit 654b4e8

Browse files
committed
fix: builds
1 parent 9e78703 commit 654b4e8

File tree

8 files changed

+1135
-1446
lines changed

8 files changed

+1135
-1446
lines changed

.eslintrc

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
"@readme/eslint-config",
44
"@readme/eslint-config/esm",
55
"@readme/eslint-config/typescript",
6-
"@readme/eslint-config/testing/vitest"
6+
"@readme/eslint-config/testing/vitest",
77
],
88
"root": true,
99
"env": {
10-
"browser": true
10+
"browser": true,
1111
},
1212
"rules": {
1313
"@typescript-eslint/no-explicit-any": "off",
@@ -21,26 +21,26 @@
2121
"no-underscore-dangle": ["error", { "allow": ["_boundary"] }],
2222
"spaced-comment": "off",
2323

24-
"vitest/require-hook": [
24+
"@vitest/require-hook": [
2525
"error",
2626
{
27-
"allowedFunctionCalls": ["runCustomFixtures"]
28-
}
29-
]
27+
"allowedFunctionCalls": ["runCustomFixtures"],
28+
},
29+
],
3030
},
3131
"overrides": [
3232
{
3333
"files": ["src/fixtures/**"],
3434
"rules": {
3535
"import/no-commonjs": "off",
36-
"unicorn/prefer-module": "off"
37-
}
36+
"unicorn/prefer-module": "off",
37+
},
3838
},
3939
{
4040
"files": ["src/**/*.test.*"],
4141
"rules": {
42-
"unicorn/prefer-module": "off"
43-
}
44-
}
45-
]
42+
"unicorn/prefer-module": "off",
43+
},
44+
},
45+
],
4646
}

0 commit comments

Comments
 (0)