@coko/lint 3.0.0-alpha.35 → 3.0.0-alpha.36

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.36](https://gitlab.coko.foundation/cokoapps/lint/compare/v3.0.0-alpha.35...v3.0.0-alpha.36) (2026-05-04)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **eslint:** fix cypress pattern and add browser globals to pattern ([5784998](https://gitlab.coko.foundation/cokoapps/lint/commit/57849987886257f769ec115d85570b3a27d5152f))
11
+
5
12
  ## [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
13
 
7
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coko/lint",
3
- "version": "3.0.0-alpha.35",
3
+ "version": "3.0.0-alpha.36",
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/**', 'cypress'],
324
+ ignores: ['packages/client/**', 'cypress/**'],
325
325
  },
326
326
 
327
327
  {
328
328
  ...serverCommonjs,
329
- ignores: ['packages/client/**', 'cypress'],
329
+ ignores: ['packages/client/**', 'cypress/**'],
330
330
  },
331
331
 
332
332
  {
333
333
  ...serverMjs,
334
- ignores: ['packages/client/**', 'cypress'],
334
+ ignores: ['packages/client/**', 'cypress/**'],
335
335
  },
336
336
 
337
337
  /**
@@ -343,6 +343,9 @@ const root = [
343
343
  extends: [pluginCypress.configs.recommended],
344
344
  languageOptions: {
345
345
  sourceType: 'module',
346
+ globals: {
347
+ ...globals.browser,
348
+ },
346
349
  },
347
350
  },
348
351