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

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.37](https://gitlab.coko.foundation/cokoapps/lint/compare/v3.0.0-alpha.36...v3.0.0-alpha.37) (2026-05-05)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **lintstaged:** fix extensions during lintstaged ([2241a37](https://gitlab.coko.foundation/cokoapps/lint/commit/2241a37a549ffd06cd54e97f05f78f50562b199d))
11
+
5
12
  ## [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
13
 
7
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coko/lint",
3
- "version": "3.0.0-alpha.36",
3
+ "version": "3.0.0-alpha.37",
4
4
  "description": "Linter configurations and dependencies for coko's projects",
5
5
  "keywords": [
6
6
  "lint",
package/src/cli.mjs CHANGED
@@ -107,8 +107,10 @@ const lintStaged = async options => {
107
107
  const success = await lintStagedLib({
108
108
  cwd: process.cwd(),
109
109
  config: {
110
- '*.{js,mjs}': jsArray,
111
- '*.{js,graphql,json,yml,md,html}': ['prettier --check'],
110
+ '*.{js,mjs,ts,mts,jsx,tsx}': jsArray,
111
+ '*.{js,ts,mjs,mts,jsx,tsx,graphql,json,yml,md,html}': [
112
+ 'prettier --check',
113
+ ],
112
114
  },
113
115
  })
114
116