@coko/lint 3.0.0-alpha.20 → 3.0.0-alpha.21
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 +7 -0
- package/package.json +1 -1
- package/src/eslint.mjs +3 -5
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.21](https://gitlab.coko.foundation/cokoapps/lint/compare/v3.0.0-alpha.20...v3.0.0-alpha.21) (2026-01-26)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **eslint:** no extensions for jsx/tsx files ([25ec578](https://gitlab.coko.foundation/cokoapps/lint/commit/25ec5782e79c2960a56d5416a995093148f90411))
|
|
11
|
+
|
|
5
12
|
## [3.0.0-alpha.20](https://gitlab.coko.foundation/cokoapps/lint/compare/v3.0.0-alpha.19...v3.0.0-alpha.20) (2026-01-26)
|
|
6
13
|
|
|
7
14
|
|
package/package.json
CHANGED
package/src/eslint.mjs
CHANGED
|
@@ -93,7 +93,9 @@ const commonRules = {
|
|
|
93
93
|
'ignorePackages',
|
|
94
94
|
{
|
|
95
95
|
js: 'never',
|
|
96
|
+
jsx: 'never',
|
|
96
97
|
ts: 'never',
|
|
98
|
+
tsx: 'never',
|
|
97
99
|
},
|
|
98
100
|
],
|
|
99
101
|
'import/no-absolute-path': 'error',
|
|
@@ -104,8 +106,7 @@ const commonRules = {
|
|
|
104
106
|
devDependencies: [
|
|
105
107
|
// storybook
|
|
106
108
|
'.storybook/*',
|
|
107
|
-
'**/stories
|
|
108
|
-
'**/stories/**/*.ts',
|
|
109
|
+
'**/stories/**/*',
|
|
109
110
|
|
|
110
111
|
// tests
|
|
111
112
|
'cypress/**',
|
|
@@ -116,9 +117,6 @@ const commonRules = {
|
|
|
116
117
|
'**/__tests__/**/*',
|
|
117
118
|
'**/vitest.config.*',
|
|
118
119
|
|
|
119
|
-
// webpack
|
|
120
|
-
'webpack/**',
|
|
121
|
-
|
|
122
120
|
// configs
|
|
123
121
|
'.commitlintrc.js',
|
|
124
122
|
'.commitlintrc.ts',
|