@coko/lint 3.0.0-alpha.34 → 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 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.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
+
5
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)
6
13
 
7
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coko/lint",
3
- "version": "3.0.0-alpha.34",
3
+ "version": "3.0.0-alpha.35",
4
4
  "description": "Linter configurations and dependencies for coko's projects",
5
5
  "keywords": [
6
6
  "lint",
package/src/eslint.mjs CHANGED
@@ -321,17 +321,17 @@ const root = [
321
321
  */
322
322
  {
323
323
  ...serverFiles,
324
- ignores: ['packages/client/**'],
324
+ ignores: ['packages/client/**', 'cypress'],
325
325
  },
326
326
 
327
327
  {
328
328
  ...serverCommonjs,
329
- ignores: ['packages/client/**'],
329
+ ignores: ['packages/client/**', 'cypress'],
330
330
  },
331
331
 
332
332
  {
333
333
  ...serverMjs,
334
- ignores: ['packages/client/**'],
334
+ ignores: ['packages/client/**', 'cypress'],
335
335
  },
336
336
 
337
337
  /**