@coko/lint 3.0.0-alpha.27 → 3.0.0-alpha.29
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 +7 -0
- package/src/index.mjs +2 -0
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.29](https://gitlab.coko.foundation/cokoapps/lint/compare/v3.0.0-alpha.28...v3.0.0-alpha.29) (2026-04-29)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* **eslint:** export root eslint config ([5b2c6d5](https://gitlab.coko.foundation/cokoapps/lint/commit/5b2c6d50377b40ad8b84b4188ac4fd35a226502a))
|
|
11
|
+
|
|
12
|
+
## [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)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **eslint:** fix cz config issues on the client side ([11f92ed](https://gitlab.coko.foundation/cokoapps/lint/commit/11f92ed65f709a9e8a69012b91b5d8d0b72d0288))
|
|
18
|
+
|
|
5
19
|
## [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
20
|
|
|
7
21
|
|
package/package.json
CHANGED
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),
|
package/src/index.mjs
CHANGED
|
@@ -5,6 +5,7 @@ import {
|
|
|
5
5
|
defineEslintConfig,
|
|
6
6
|
serverEslintConfig,
|
|
7
7
|
clientEslintConfig,
|
|
8
|
+
rootEslintConfig,
|
|
8
9
|
} from './eslint.mjs'
|
|
9
10
|
|
|
10
11
|
import prettier from './prettier.mjs'
|
|
@@ -15,6 +16,7 @@ export {
|
|
|
15
16
|
defineEslintConfig,
|
|
16
17
|
serverEslintConfig,
|
|
17
18
|
clientEslintConfig,
|
|
19
|
+
rootEslintConfig,
|
|
18
20
|
stylelint,
|
|
19
21
|
prettier,
|
|
20
22
|
commitizen,
|