@coko/lint 3.0.0-alpha.33 → 3.0.0-alpha.35
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 +14 -0
- package/package.json +1 -1
- package/src/eslint.mjs +24 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
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.35](https://gitlab.coko.foundation/cokoapps/lint/compare/v3.0.0-alpha.34...v3.0.0-alpha.35) (2026-05-04)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **eslint:** do not leak node rules in cypress folder ([553bd4a](https://gitlab.coko.foundation/cokoapps/lint/commit/553bd4a821a7b40e010224bc04fbbd5760c18a1a))
|
|
11
|
+
|
|
12
|
+
## [3.0.0-alpha.34](https://gitlab.coko.foundation/cokoapps/lint/compare/v3.0.0-alpha.33...v3.0.0-alpha.34) (2026-05-04)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **eslint:** allow import/export in cypress files ([2fee5a0](https://gitlab.coko.foundation/cokoapps/lint/commit/2fee5a082394780076460ed5d8a68bfab9cd326a))
|
|
18
|
+
|
|
5
19
|
## [3.0.0-alpha.33](https://gitlab.coko.foundation/cokoapps/lint/compare/v3.0.0-alpha.32...v3.0.0-alpha.33) (2026-05-04)
|
|
6
20
|
|
|
7
21
|
|
package/package.json
CHANGED
package/src/eslint.mjs
CHANGED
|
@@ -308,31 +308,48 @@ const client = [
|
|
|
308
308
|
]
|
|
309
309
|
|
|
310
310
|
const root = [
|
|
311
|
+
/**
|
|
312
|
+
* COMMON 1
|
|
313
|
+
*/
|
|
311
314
|
js.configs.recommended,
|
|
312
315
|
importPlugin.flatConfigs.recommended,
|
|
313
316
|
pluginPromise.configs['flat/recommended'],
|
|
314
317
|
workspacesConfig,
|
|
315
318
|
|
|
319
|
+
/**
|
|
320
|
+
* SERVER
|
|
321
|
+
*/
|
|
316
322
|
{
|
|
317
323
|
...serverFiles,
|
|
318
|
-
ignores: ['packages/client/**'],
|
|
324
|
+
ignores: ['packages/client/**', 'cypress'],
|
|
319
325
|
},
|
|
320
326
|
|
|
321
327
|
{
|
|
322
328
|
...serverCommonjs,
|
|
323
|
-
ignores: ['packages/client/**'],
|
|
329
|
+
ignores: ['packages/client/**', 'cypress'],
|
|
324
330
|
},
|
|
325
331
|
|
|
326
332
|
{
|
|
327
333
|
...serverMjs,
|
|
328
|
-
ignores: ['packages/client/**'],
|
|
334
|
+
ignores: ['packages/client/**', 'cypress'],
|
|
329
335
|
},
|
|
330
336
|
|
|
337
|
+
/**
|
|
338
|
+
* CYPRESS
|
|
339
|
+
*/
|
|
340
|
+
|
|
331
341
|
{
|
|
332
342
|
files: ['cypress/**/*.{js,mjs,ts}'],
|
|
333
343
|
extends: [pluginCypress.configs.recommended],
|
|
344
|
+
languageOptions: {
|
|
345
|
+
sourceType: 'module',
|
|
346
|
+
},
|
|
334
347
|
},
|
|
335
348
|
|
|
349
|
+
/**
|
|
350
|
+
* CLIENT
|
|
351
|
+
*/
|
|
352
|
+
|
|
336
353
|
{
|
|
337
354
|
...react.configs.flat.recommended,
|
|
338
355
|
files: ['packages/client/**/*.{js,jsx,mjs,cjs,ts,tsx}'],
|
|
@@ -363,6 +380,10 @@ const root = [
|
|
|
363
380
|
files: ['packages/client/**/*.cjs'],
|
|
364
381
|
},
|
|
365
382
|
|
|
383
|
+
/**
|
|
384
|
+
* COMMON 2
|
|
385
|
+
*/
|
|
386
|
+
|
|
366
387
|
typescriptConfig,
|
|
367
388
|
viteConfig,
|
|
368
389
|
globalIgnores(globalIgnoreList),
|