@coko/lint 3.0.0-alpha.6 → 3.0.0-alpha.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/src/eslint.mjs +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [3.0.0-alpha.7](https://gitlab.coko.foundation/cokoapps/lint/compare/v3.0.0-alpha.6...v3.0.0-alpha.7) (2025-11-06)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **eslint:** disable vitest typecheck ([3184e6e](https://gitlab.coko.foundation/cokoapps/lint/commit/3184e6ec614639584c5e31c45a039931accf36fa))
|
|
11
|
+
|
|
5
12
|
## [3.0.0-alpha.6](https://gitlab.coko.foundation/cokoapps/lint/compare/v3.0.0-alpha.5...v3.0.0-alpha.6) (2025-11-06)
|
|
6
13
|
|
|
7
14
|
|
package/package.json
CHANGED
package/src/eslint.mjs
CHANGED
|
@@ -261,11 +261,11 @@ const server = [
|
|
|
261
261
|
plugins: {
|
|
262
262
|
vitest,
|
|
263
263
|
},
|
|
264
|
-
settings: {
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
},
|
|
264
|
+
// settings: {
|
|
265
|
+
// vitest: {
|
|
266
|
+
// typecheck: true,
|
|
267
|
+
// },
|
|
268
|
+
// },
|
|
269
269
|
rules: {
|
|
270
270
|
...vitest.configs.recommended.rules,
|
|
271
271
|
},
|