@alexlit/lint-kit 185.3.1 → 185.4.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-eslint/package.json +7 -7
- package/packages/config-eslint/plugins/regexp.js +7 -1
- package/packages/config-npmlint/package.json +2 -2
- package/packages/config-prettier/package.json +2 -2
- package/packages/config-stylelint/package.json +4 -4
- package/scripts/release.sh +1 -1
- package/scripts/semver.sh +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-eslint",
|
|
3
|
-
"version": "138.
|
|
3
|
+
"version": "138.4.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Sharable ESLint configuration",
|
|
6
6
|
"keywords": [
|
|
@@ -43,9 +43,9 @@
|
|
|
43
43
|
"@eslint/json": "^1.2.0",
|
|
44
44
|
"@intlify/eslint-plugin-vue-i18n": "^4.3.0",
|
|
45
45
|
"@stylistic/eslint-plugin": "^5.10.0",
|
|
46
|
-
"@tanstack/eslint-plugin-query": "^5.
|
|
47
|
-
"@unocss/eslint-config": "^66.6.
|
|
48
|
-
"@vitest/eslint-plugin": "^1.6.
|
|
46
|
+
"@tanstack/eslint-plugin-query": "^5.99.0",
|
|
47
|
+
"@unocss/eslint-config": "^66.6.8",
|
|
48
|
+
"@vitest/eslint-plugin": "^1.6.15",
|
|
49
49
|
"eslint": "^10.2.0",
|
|
50
50
|
"eslint-config-prettier": "^10.1.8",
|
|
51
51
|
"eslint-plugin-jsdoc": "^62.9.0",
|
|
@@ -53,14 +53,14 @@
|
|
|
53
53
|
"eslint-plugin-prettier": "^5.5.5",
|
|
54
54
|
"eslint-plugin-regexp": "^3.1.0",
|
|
55
55
|
"eslint-plugin-sonarjs": "^4.0.2",
|
|
56
|
-
"eslint-plugin-tailwindcss": "^3.18.
|
|
56
|
+
"eslint-plugin-tailwindcss": "^3.18.3",
|
|
57
57
|
"eslint-plugin-unicorn": "^64.0.0",
|
|
58
58
|
"eslint-plugin-vue": "^10.8.0",
|
|
59
59
|
"eslint-plugin-vuejs-accessibility": "^2.5.0",
|
|
60
|
-
"globals": "^17.
|
|
60
|
+
"globals": "^17.5.0",
|
|
61
61
|
"jsonc-eslint-parser": "^3.1.0",
|
|
62
62
|
"typescript": "^6.0.2",
|
|
63
|
-
"typescript-eslint": "^8.58.
|
|
63
|
+
"typescript-eslint": "^8.58.2",
|
|
64
64
|
"yaml-eslint-parser": "^2.0.0"
|
|
65
65
|
},
|
|
66
66
|
"publishConfig": {
|
|
@@ -5,5 +5,11 @@ import { FILES } from '../presets/base.js';
|
|
|
5
5
|
|
|
6
6
|
/** @see [eslint-plugin-regexp](https://github.com/ota-meshi/eslint-plugin-regexp) */
|
|
7
7
|
export const regexp = defineConfig([
|
|
8
|
-
{
|
|
8
|
+
{
|
|
9
|
+
files: FILES,
|
|
10
|
+
...plugin.configs['flat/recommended'],
|
|
11
|
+
settings: {
|
|
12
|
+
regexp: { allowedCharacterRanges: ['alphanumeric', 'а-я', 'А-Я'] },
|
|
13
|
+
},
|
|
14
|
+
},
|
|
9
15
|
]);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-npmlint",
|
|
3
|
-
"version": "9.1.
|
|
3
|
+
"version": "9.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "npmlint config",
|
|
6
6
|
"keywords": [
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"lockfile-lint": "^5.0.0",
|
|
42
|
-
"npm-package-json-lint": "^10.2.
|
|
42
|
+
"npm-package-json-lint": "^10.2.1",
|
|
43
43
|
"npm-package-json-lint-config-default": "^9.0.1"
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-prettier",
|
|
3
|
-
"version": "22.3.
|
|
3
|
+
"version": "22.3.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "prettier config",
|
|
6
6
|
"keywords": [
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"@prettier/plugin-pug": "^3.4.2",
|
|
40
40
|
"@prettier/plugin-ruby": "^4.0.4",
|
|
41
41
|
"@prettier/plugin-xml": "^3.4.2",
|
|
42
|
-
"prettier": "^3.8.
|
|
42
|
+
"prettier": "^3.8.3",
|
|
43
43
|
"prettier-plugin-eruby": "^0.0.3",
|
|
44
44
|
"prettier-plugin-jsdoc": "^1.8.0",
|
|
45
45
|
"prettier-plugin-packagejson": "^3.0.2",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-stylelint",
|
|
3
|
-
"version": "60.
|
|
3
|
+
"version": "60.7.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Stylelint config",
|
|
6
6
|
"keywords": [
|
|
@@ -38,10 +38,10 @@
|
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@double-great/stylelint-a11y": "^3.4.9",
|
|
40
40
|
"@morev/stylelint-plugin": "^0.5.0",
|
|
41
|
-
"postcss": "^8.5.
|
|
41
|
+
"postcss": "^8.5.9",
|
|
42
42
|
"postcss-html": "^1.8.1",
|
|
43
|
-
"prettier": "^3.8.
|
|
44
|
-
"stylelint": "17.
|
|
43
|
+
"prettier": "^3.8.3",
|
|
44
|
+
"stylelint": "17.7.0",
|
|
45
45
|
"stylelint-color-format": "^1.1.0",
|
|
46
46
|
"stylelint-config-recommended-vue": "^1.6.1",
|
|
47
47
|
"stylelint-config-standard": "^40.0.0",
|
package/scripts/release.sh
CHANGED
|
@@ -4,7 +4,7 @@ source "$(dirname $0)"/../bash.config.sh
|
|
|
4
4
|
|
|
5
5
|
VERSION=${1:-patch} # patch | minor | major
|
|
6
6
|
|
|
7
|
-
npm run semver --${VERSION}
|
|
7
|
+
npm run semver -- --${VERSION}
|
|
8
8
|
|
|
9
9
|
CURRENT_PACKAGE_NAME=$(node -p "require('./package.json').name")
|
|
10
10
|
CURRENT_PACKAGE_VERSION=$(node -p "require('./package.json').version")
|