@coko/lint 3.0.0-alpha.27 → 3.0.0-alpha.28

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.28](https://gitlab.coko.foundation/cokoapps/lint/compare/v3.0.0-alpha.27...v3.0.0-alpha.28) (2026-04-28)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **eslint:** fix cz config issues on the client side ([11f92ed](https://gitlab.coko.foundation/cokoapps/lint/commit/11f92ed65f709a9e8a69012b91b5d8d0b72d0288))
11
+
5
12
  ## [3.0.0-alpha.27](https://gitlab.coko.foundation/cokoapps/lint/compare/v3.0.0-alpha.26...v3.0.0-alpha.27) (2026-04-27)
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.27",
3
+ "version": "3.0.0-alpha.28",
4
4
  "description": "Linter configurations and dependencies for coko's projects",
5
5
  "keywords": [
6
6
  "lint",
package/src/eslint.mjs CHANGED
@@ -104,6 +104,7 @@ const commonRules = {
104
104
  '.cz-config.js',
105
105
  '.cz-config.ts',
106
106
  '.cz-config.mjs',
107
+ '.cz-config.cjs',
107
108
  '.lintstagedrc.js',
108
109
  '.lintstagedrc.ts',
109
110
  '.lintstagedrc.mjs',
@@ -184,6 +185,7 @@ const globalIgnoreList = [
184
185
  '**/docs',
185
186
  '!**/.storybook',
186
187
  '!**/.cz-config.js',
188
+ '!**/.cz-config.cjs',
187
189
  '!**/.lintstagedrc.js',
188
190
  '!**/.prettierrc.js',
189
191
  '!**/.stylelintrc.js',
@@ -286,6 +288,11 @@ const client = [
286
288
  },
287
289
  },
288
290
 
291
+ {
292
+ files: ['**/*.cjs'],
293
+ languageOptions: { sourceType: 'commonjs' },
294
+ },
295
+
289
296
  typescriptConfig,
290
297
  viteConfig,
291
298
  globalIgnores(globalIgnoreList),