@alexaegis/lint-staged-config 0.10.4 → 0.11.0
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/index.cjs +1 -1
- package/index.d.ts +2 -1
- package/index.js +1 -1
- package/package.json +14 -14
package/index.cjs
CHANGED
|
@@ -4,7 +4,7 @@ const fs = require("@alexaegis/fs");
|
|
|
4
4
|
const node_path = require("node:path");
|
|
5
5
|
const prettierCommand = "prettier --check";
|
|
6
6
|
const tscCommand = "tsc --noEmit";
|
|
7
|
-
const eslintSingleFileCommand = "eslint --max-warnings=0 --no-
|
|
7
|
+
const eslintSingleFileCommand = "eslint --max-warnings=0 --no-warn-ignored";
|
|
8
8
|
const markdownCommand = "remark --frail --no-stdout --silently-ignore";
|
|
9
9
|
const lintStagedConfig = {
|
|
10
10
|
"**/!(shims)/(*.(ts|js|cts|cjs|mts|mjs|jsx|tsx)|tsconfig*.json)?(x)": (filenames) => {
|
package/index.d.ts
CHANGED
package/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import { groupByCommonNearestFile } from "@alexaegis/fs";
|
|
|
2
2
|
import { join } from "node:path";
|
|
3
3
|
const prettierCommand = "prettier --check";
|
|
4
4
|
const tscCommand = "tsc --noEmit";
|
|
5
|
-
const eslintSingleFileCommand = "eslint --max-warnings=0 --no-
|
|
5
|
+
const eslintSingleFileCommand = "eslint --max-warnings=0 --no-warn-ignored";
|
|
6
6
|
const markdownCommand = "remark --frail --no-stdout --silently-ignore";
|
|
7
7
|
const lintStagedConfig = {
|
|
8
8
|
"**/!(shims)/(*.(ts|js|cts|cjs|mts|mjs|jsx|tsx)|tsconfig*.json)?(x)": (filenames) => {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexaegis/lint-staged-config",
|
|
3
3
|
"description": "Lint staged config",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.11.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|
|
7
7
|
"archetype": {
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
39
|
"engines": {
|
|
40
|
-
"node": ">=
|
|
41
|
-
"pnpm": ">=
|
|
40
|
+
"node": ">=20.12.0",
|
|
41
|
+
"pnpm": ">=9.1.1"
|
|
42
42
|
},
|
|
43
43
|
"exports": {
|
|
44
44
|
".": {
|
|
@@ -50,21 +50,21 @@
|
|
|
50
50
|
"./readme": "./readme.md"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@alexaegis/fs": "^0.9.
|
|
53
|
+
"@alexaegis/fs": "^0.9.1",
|
|
54
54
|
"lint-staged": "15.2.2",
|
|
55
|
-
"typescript": "^5.4.
|
|
55
|
+
"typescript": "^5.4.5"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@alexaegis/eslint-config-vitest": "^0.
|
|
59
|
-
"@alexaegis/ts": "^0.
|
|
60
|
-
"@alexaegis/vite": "^0.
|
|
61
|
-
"@alexaegis/vitest": "^0.
|
|
62
|
-
"@types/eslint": "^8.56.
|
|
58
|
+
"@alexaegis/eslint-config-vitest": "^0.11.0",
|
|
59
|
+
"@alexaegis/ts": "^0.11.0",
|
|
60
|
+
"@alexaegis/vite": "^0.11.0",
|
|
61
|
+
"@alexaegis/vitest": "^0.11.0",
|
|
62
|
+
"@types/eslint": "^8.56.10",
|
|
63
63
|
"@types/lint-staged": "^13.3.0",
|
|
64
|
-
"@types/node": "^20.
|
|
65
|
-
"publint": "^0.2.
|
|
66
|
-
"vite": "^5.2.
|
|
67
|
-
"vitest": "^1.
|
|
64
|
+
"@types/node": "^20.12.12",
|
|
65
|
+
"publint": "^0.2.8",
|
|
66
|
+
"vite": "^5.2.11",
|
|
67
|
+
"vitest": "^1.6.0"
|
|
68
68
|
},
|
|
69
69
|
"scripts": {
|
|
70
70
|
"lint:depcheck": "turbo run lint:depcheck_ --concurrency 16 --cache-dir .cache/turbo --filter @alexaegis/lint-staged-config",
|