@alexlit/lint-kit 145.0.0 → 145.2.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/package.json +1 -1
- package/packages/config-branchnamelint/node_modules/.bin/branch-name-lint +17 -0
- package/packages/config-branchnamelint/node_modules/.bin/lockfile-lint +17 -0
- package/packages/config-branchnamelint/node_modules/.bin/npmPkgJsonLint +17 -0
- package/packages/config-commitlint/node_modules/.bin/commitlint +2 -2
- package/packages/config-eslint/package.json +3 -3
- package/packages/config-htmllint/node_modules/.bin/linthtml +2 -2
- package/packages/config-npmlint/node_modules/.bin/lockfile-lint +2 -2
- package/packages/config-npmlint/node_modules/.bin/npmPkgJsonLint +2 -2
- package/packages/config-prettier/package.json +2 -2
- package/packages/config-stylelint/package.json +2 -2
package/package.json
CHANGED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
+
esac
|
|
7
|
+
|
|
8
|
+
if [ -z "$NODE_PATH" ]; then
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@b12k+branch-name-lint@1.1.0/node_modules/@b12k/branch-name-lint/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@b12k+branch-name-lint@1.1.0/node_modules/@b12k/branch-name-lint/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@b12k+branch-name-lint@1.1.0/node_modules/@b12k/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@b12k+branch-name-lint@1.1.0/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
|
+
else
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@b12k+branch-name-lint@1.1.0/node_modules/@b12k/branch-name-lint/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@b12k+branch-name-lint@1.1.0/node_modules/@b12k/branch-name-lint/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@b12k+branch-name-lint@1.1.0/node_modules/@b12k/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@b12k+branch-name-lint@1.1.0/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
+
fi
|
|
13
|
+
if [ -x "$basedir/node" ]; then
|
|
14
|
+
exec "$basedir/node" "$basedir/../@b12k/branch-name-lint/bin/index.js" "$@"
|
|
15
|
+
else
|
|
16
|
+
exec node "$basedir/../@b12k/branch-name-lint/bin/index.js" "$@"
|
|
17
|
+
fi
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
+
esac
|
|
7
|
+
|
|
8
|
+
if [ -z "$NODE_PATH" ]; then
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.8.3/node_modules/lockfile-lint/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.8.3/node_modules/lockfile-lint/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.8.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
|
+
else
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.8.3/node_modules/lockfile-lint/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.8.3/node_modules/lockfile-lint/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.8.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
+
fi
|
|
13
|
+
if [ -x "$basedir/node" ]; then
|
|
14
|
+
exec "$basedir/node" "$basedir/../lockfile-lint/bin/lockfile-lint.js" "$@"
|
|
15
|
+
else
|
|
16
|
+
exec node "$basedir/../lockfile-lint/bin/lockfile-lint.js" "$@"
|
|
17
|
+
fi
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
|
|
3
|
+
|
|
4
|
+
case `uname` in
|
|
5
|
+
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
|
|
6
|
+
esac
|
|
7
|
+
|
|
8
|
+
if [ -z "$NODE_PATH" ]; then
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.8.3/node_modules/npm-package-json-lint/dist/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.8.3/node_modules/npm-package-json-lint/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.8.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
|
+
else
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.8.3/node_modules/npm-package-json-lint/dist/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.8.3/node_modules/npm-package-json-lint/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.8.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
|
+
fi
|
|
13
|
+
if [ -x "$basedir/node" ]; then
|
|
14
|
+
exec "$basedir/node" "$basedir/../npm-package-json-lint/dist/cli.js" "$@"
|
|
15
|
+
else
|
|
16
|
+
exec node "$basedir/../npm-package-json-lint/dist/cli.js" "$@"
|
|
17
|
+
fi
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@commitlint+cli@19.8.0_@types+node@22.13.10_typescript@5.8.
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@commitlint+cli@19.8.0_@types+node@22.13.10_typescript@5.8.3/node_modules/@commitlint/cli/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@commitlint+cli@19.8.0_@types+node@22.13.10_typescript@5.8.3/node_modules/@commitlint/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@commitlint+cli@19.8.0_@types+node@22.13.10_typescript@5.8.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@commitlint+cli@19.8.0_@types+node@22.13.10_typescript@5.8.
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@commitlint+cli@19.8.0_@types+node@22.13.10_typescript@5.8.3/node_modules/@commitlint/cli/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@commitlint+cli@19.8.0_@types+node@22.13.10_typescript@5.8.3/node_modules/@commitlint/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@commitlint+cli@19.8.0_@types+node@22.13.10_typescript@5.8.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../@commitlint/cli/cli.js" "$@"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-eslint",
|
|
3
|
-
"version": "108.
|
|
3
|
+
"version": "108.5.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Sharable ESLint configuration",
|
|
6
6
|
"keywords": [
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"@eslint/json": "^0.11.0",
|
|
44
44
|
"@intlify/eslint-plugin-vue-i18n": "^4.0.1",
|
|
45
45
|
"@stylistic/eslint-plugin": "^4.2.0",
|
|
46
|
-
"@tanstack/eslint-plugin-query": "^5.
|
|
46
|
+
"@tanstack/eslint-plugin-query": "^5.72.1",
|
|
47
47
|
"@unocss/eslint-config": "^66.0.0",
|
|
48
48
|
"eslint": "9.24.0",
|
|
49
49
|
"eslint-config-prettier": "^10.1.1",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"globals": "^16.0.0",
|
|
61
61
|
"jsonc-eslint-parser": "^2.4.0",
|
|
62
62
|
"typescript": "^5.8.3",
|
|
63
|
-
"typescript-eslint": "^8.29.
|
|
63
|
+
"typescript-eslint": "^8.29.1",
|
|
64
64
|
"yaml-eslint-parser": "^1.3.0"
|
|
65
65
|
},
|
|
66
66
|
"packageManager": "pnpm@9.x",
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@linthtml+linthtml@0.10.2_typescript@5.8.
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@linthtml+linthtml@0.10.2_typescript@5.8.3/node_modules/@linthtml/linthtml/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@linthtml+linthtml@0.10.2_typescript@5.8.3/node_modules/@linthtml/linthtml/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@linthtml+linthtml@0.10.2_typescript@5.8.3/node_modules/@linthtml/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@linthtml+linthtml@0.10.2_typescript@5.8.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@linthtml+linthtml@0.10.2_typescript@5.8.
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@linthtml+linthtml@0.10.2_typescript@5.8.3/node_modules/@linthtml/linthtml/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@linthtml+linthtml@0.10.2_typescript@5.8.3/node_modules/@linthtml/linthtml/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@linthtml+linthtml@0.10.2_typescript@5.8.3/node_modules/@linthtml/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/@linthtml+linthtml@0.10.2_typescript@5.8.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../@linthtml/linthtml/bin/linthtml.js" "$@"
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.8.
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.8.3/node_modules/lockfile-lint/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.8.3/node_modules/lockfile-lint/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.8.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.8.
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.8.3/node_modules/lockfile-lint/bin/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.8.3/node_modules/lockfile-lint/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/lockfile-lint@4.14.0_typescript@5.8.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../lockfile-lint/bin/lockfile-lint.js" "$@"
|
|
@@ -6,9 +6,9 @@ case `uname` in
|
|
|
6
6
|
esac
|
|
7
7
|
|
|
8
8
|
if [ -z "$NODE_PATH" ]; then
|
|
9
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.8.
|
|
9
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.8.3/node_modules/npm-package-json-lint/dist/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.8.3/node_modules/npm-package-json-lint/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.8.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules"
|
|
10
10
|
else
|
|
11
|
-
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.8.
|
|
11
|
+
export NODE_PATH="/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.8.3/node_modules/npm-package-json-lint/dist/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.8.3/node_modules/npm-package-json-lint/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/npm-package-json-lint@8.0.0_typescript@5.8.3/node_modules:/home/alexlit/Work/@alexlit/lint-kit/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
12
12
|
fi
|
|
13
13
|
if [ -x "$basedir/node" ]; then
|
|
14
14
|
exec "$basedir/node" "$basedir/../npm-package-json-lint/dist/cli.js" "$@"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-prettier",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.8.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "prettier config",
|
|
6
6
|
"keywords": [
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"prettier-plugin-eruby": "^0.0.3",
|
|
44
44
|
"prettier-plugin-jsdoc": "^1.3.2",
|
|
45
45
|
"prettier-plugin-packagejson": "^2.5.10",
|
|
46
|
-
"prettier-plugin-sh": "^0.
|
|
46
|
+
"prettier-plugin-sh": "^0.17.1",
|
|
47
47
|
"prettier-plugin-solidity": "^1.4.2",
|
|
48
48
|
"prettier-plugin-sort-json": "^4.1.1",
|
|
49
49
|
"prettier-plugin-sql": "^0.19.0",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-stylelint",
|
|
3
|
-
"version": "51.0.
|
|
3
|
+
"version": "51.0.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Stylelint config",
|
|
6
6
|
"keywords": [
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"stylelint-no-unresolved-module": "^2.3.0",
|
|
56
56
|
"stylelint-no-unsupported-browser-features": "^8.0.4",
|
|
57
57
|
"stylelint-order": "^6.0.4",
|
|
58
|
-
"stylelint-plugin-logical-css": "^1.2.
|
|
58
|
+
"stylelint-plugin-logical-css": "^1.2.3",
|
|
59
59
|
"stylelint-prettier": "^5.0.3",
|
|
60
60
|
"stylelint-scss": "^6.11.1",
|
|
61
61
|
"stylelint-selector-no-empty": "^1.0.9",
|