@alexlit/lint-kit 188.0.0 → 189.1.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-commitlint/package.json +3 -3
- package/packages/config-eslint/package.json +9 -9
- package/packages/config-eslint/plugins/unicorn.js +2 -3
- package/packages/config-hooks/package.json +2 -2
- package/packages/config-prettier/package.json +2 -2
- package/packages/config-stylelint/index.js +1 -1
- package/packages/config-stylelint/package.json +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-commitlint",
|
|
3
|
-
"version": "14.0.
|
|
3
|
+
"version": "14.0.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Commitlint config",
|
|
6
6
|
"keywords": [
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"up": "../../scripts/up.sh"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@commitlint/cli": "^21.0.
|
|
38
|
-
"@commitlint/config-conventional": "^21.0.
|
|
37
|
+
"@commitlint/cli": "^21.0.2",
|
|
38
|
+
"@commitlint/config-conventional": "^21.0.2",
|
|
39
39
|
"conventional-changelog-cli": "^5.0.0"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-eslint",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "141.1.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Sharable ESLint configuration",
|
|
6
6
|
"keywords": [
|
|
@@ -41,26 +41,26 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@eslint/js": "^10.0.1",
|
|
43
43
|
"@eslint/json": "^2.0.0",
|
|
44
|
-
"@intlify/eslint-plugin-vue-i18n": "^4.5.
|
|
44
|
+
"@intlify/eslint-plugin-vue-i18n": "^4.5.1",
|
|
45
45
|
"@stylistic/eslint-plugin": "^5.10.0",
|
|
46
|
-
"@tanstack/eslint-plugin-query": "^5.
|
|
46
|
+
"@tanstack/eslint-plugin-query": "^5.101.0",
|
|
47
47
|
"@unocss/eslint-config": "^66.7.0",
|
|
48
|
-
"@vitest/eslint-plugin": "^1.6.
|
|
49
|
-
"eslint": "^10.4.
|
|
48
|
+
"@vitest/eslint-plugin": "^1.6.20",
|
|
49
|
+
"eslint": "^10.4.1",
|
|
50
50
|
"eslint-config-prettier": "^10.1.8",
|
|
51
|
-
"eslint-plugin-jsdoc": "^63.0.
|
|
51
|
+
"eslint-plugin-jsdoc": "^63.0.2",
|
|
52
52
|
"eslint-plugin-perfectionist": "^5.9.0",
|
|
53
53
|
"eslint-plugin-prettier": "^5.5.6",
|
|
54
54
|
"eslint-plugin-regexp": "^3.1.0",
|
|
55
55
|
"eslint-plugin-sonarjs": "^4.0.3",
|
|
56
56
|
"eslint-plugin-tailwindcss": "^3.18.3",
|
|
57
|
-
"eslint-plugin-unicorn": "^
|
|
58
|
-
"eslint-plugin-vue": "^10.9.
|
|
57
|
+
"eslint-plugin-unicorn": "^65.0.1",
|
|
58
|
+
"eslint-plugin-vue": "^10.9.2",
|
|
59
59
|
"eslint-plugin-vuejs-accessibility": "^2.5.0",
|
|
60
60
|
"globals": "^17.6.0",
|
|
61
61
|
"jsonc-eslint-parser": "^3.1.0",
|
|
62
62
|
"typescript": "^6.0.3",
|
|
63
|
-
"typescript-eslint": "^8.
|
|
63
|
+
"typescript-eslint": "^8.61.0",
|
|
64
64
|
"yaml-eslint-parser": "^2.0.0"
|
|
65
65
|
},
|
|
66
66
|
"publishConfig": {
|
|
@@ -5,11 +5,10 @@ import { FILES } from '../presets/base.js';
|
|
|
5
5
|
|
|
6
6
|
/** @see [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) */
|
|
7
7
|
export const unicorn = defineConfig([
|
|
8
|
-
{ files: FILES, ...plugin.configs
|
|
8
|
+
{ files: FILES, ...plugin.configs.all },
|
|
9
9
|
{
|
|
10
10
|
files: FILES,
|
|
11
11
|
rules: {
|
|
12
|
-
'unicorn/better-regex': 'off',
|
|
13
12
|
'unicorn/consistent-function-scoping': [
|
|
14
13
|
'error',
|
|
15
14
|
{ checkArrowFunctions: false },
|
|
@@ -17,7 +16,7 @@ export const unicorn = defineConfig([
|
|
|
17
16
|
'unicorn/no-array-for-each': 'off',
|
|
18
17
|
'unicorn/no-array-reduce': ['error', { allowSimpleOperations: true }],
|
|
19
18
|
'unicorn/no-empty-file': 'off',
|
|
20
|
-
'unicorn/prefer-export-from': ['error', {
|
|
19
|
+
'unicorn/prefer-export-from': ['error', { checkUsedVariables: true }],
|
|
21
20
|
'unicorn/prefer-import-meta-properties': 'warn',
|
|
22
21
|
'unicorn/prefer-module': 'warn',
|
|
23
22
|
'unicorn/prefer-node-protocol': 'warn',
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-hooks",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Hooks config",
|
|
6
6
|
"keywords": [
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"husky": "^9.1.7",
|
|
39
|
-
"lint-staged": "^17.0.
|
|
39
|
+
"lint-staged": "^17.0.7"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-prettier",
|
|
3
|
-
"version": "22.4.
|
|
3
|
+
"version": "22.4.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.4",
|
|
43
43
|
"prettier-plugin-eruby": "^0.0.3",
|
|
44
44
|
"prettier-plugin-jsdoc": "^1.8.1",
|
|
45
45
|
"prettier-plugin-packagejson": "^3.0.2",
|
|
@@ -142,7 +142,7 @@ const createConfig = (plugins = {}, options = {}) => ({
|
|
|
142
142
|
'property-no-vendor-prefix': true,
|
|
143
143
|
'rule-empty-line-before': [
|
|
144
144
|
'always',
|
|
145
|
-
{ except: ['first-nested'], ignore: [] },
|
|
145
|
+
{ except: ['after-single-line-comment', 'first-nested'], ignore: [] },
|
|
146
146
|
],
|
|
147
147
|
'selector-class-pattern': [
|
|
148
148
|
'^[a-z]([a-z0-9-]+)?(__([a-z0-9]+-?)+)?(--([a-z0-9]+-?)+){0,2}$',
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alexlit/config-stylelint",
|
|
3
|
-
"version": "60.
|
|
3
|
+
"version": "60.15.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Stylelint config",
|
|
6
6
|
"keywords": [
|
|
@@ -40,8 +40,8 @@
|
|
|
40
40
|
"@morev/stylelint-plugin": "^0.5.0",
|
|
41
41
|
"postcss": "^8.5.15",
|
|
42
42
|
"postcss-html": "^1.8.1",
|
|
43
|
-
"prettier": "^3.8.
|
|
44
|
-
"stylelint": "17.
|
|
43
|
+
"prettier": "^3.8.4",
|
|
44
|
+
"stylelint": "17.13.0",
|
|
45
45
|
"stylelint-config-recommended-vue": "^1.6.1",
|
|
46
46
|
"stylelint-config-standard": "^40.0.0",
|
|
47
47
|
"stylelint-config-standard-scss": "^17.0.0",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"stylelint-order": "^8.1.1",
|
|
57
57
|
"stylelint-plugin-logical-css": "^2.1.0",
|
|
58
58
|
"stylelint-prettier": "^5.0.3",
|
|
59
|
-
"stylelint-scss": "^7.
|
|
59
|
+
"stylelint-scss": "^7.2.0",
|
|
60
60
|
"stylelint-selector-no-empty": "^1.0.9",
|
|
61
61
|
"stylelint-use-nesting": "^6.0.2"
|
|
62
62
|
},
|