@alexlit/lint-kit 118.1.0 → 119.0.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/lint-kit",
3
- "version": "118.1.0",
3
+ "version": "119.0.0",
4
4
  "private": false,
5
5
  "description": "Preset of configuration files and dependencies for linting web applications (designed for Vue.js with TypeScript)",
6
6
  "keywords": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-eslint",
3
- "version": "84.7.0",
3
+ "version": "85.0.0",
4
4
  "private": false,
5
5
  "description": "Eslint config",
6
6
  "keywords": [
@@ -38,26 +38,26 @@
38
38
  "up": "../../scripts/up.sh"
39
39
  },
40
40
  "dependencies": {
41
- "@babel/eslint-parser": "^7.24.6",
41
+ "@babel/eslint-parser": "^7.24.7",
42
42
  "@eslint/eslintrc": "^3.1.0",
43
- "@intlify/eslint-plugin-vue-i18n": "^2.0.0",
43
+ "@intlify/eslint-plugin-vue-i18n": "^3.0.0",
44
44
  "@tanstack/eslint-plugin-query": "^5.35.6",
45
- "@typescript-eslint/eslint-plugin": "^7.11.0",
46
- "@typescript-eslint/parser": "^7.11.0",
45
+ "@typescript-eslint/eslint-plugin": "^7.12.0",
46
+ "@typescript-eslint/parser": "^7.12.0",
47
47
  "eslint": "^8.57.0",
48
48
  "eslint-config-airbnb-base": "^15.0.0",
49
49
  "eslint-config-prettier": "^9.1.0",
50
50
  "eslint-define-config": "^2.1.0",
51
51
  "eslint-import-resolver-alias": "^1.1.2",
52
52
  "eslint-plugin-array-func": "^4.0.0",
53
- "eslint-plugin-compat": "^4.2.0",
53
+ "eslint-plugin-compat": "^5.0.0",
54
54
  "eslint-plugin-decorator-position": "^5.0.2",
55
55
  "eslint-plugin-eslint-comments": "^3.2.0",
56
56
  "eslint-plugin-etc": "^2.0.3",
57
57
  "eslint-plugin-ext": "^0.1.0",
58
58
  "eslint-plugin-filenames": "^1.3.2",
59
59
  "eslint-plugin-import": "^2.29.1",
60
- "eslint-plugin-jsdoc": "^48.2.7",
60
+ "eslint-plugin-jsdoc": "^48.2.9",
61
61
  "eslint-plugin-jsx-a11y": "^6.8.0",
62
62
  "eslint-plugin-lit": "^1.14.0",
63
63
  "eslint-plugin-lit-a11y": "^4.1.2",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-htmllint",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "private": false,
5
5
  "description": "htmllint config",
6
6
  "keywords": [
@@ -35,7 +35,7 @@
35
35
  "up": "../../scripts/up.sh"
36
36
  },
37
37
  "dependencies": {
38
- "@linthtml/linthtml": "^0.10.0-beta.7",
38
+ "@linthtml/linthtml": "^0.10.0-beta.9",
39
39
  "@linthtml/linthtml-config-recommended": "^0.1.0"
40
40
  },
41
41
  "engines": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-npmlint",
3
- "version": "5.2.1",
3
+ "version": "6.0.0",
4
4
  "private": false,
5
5
  "description": "npmlint config",
6
6
  "keywords": [
@@ -31,13 +31,14 @@
31
31
  "index.json"
32
32
  ],
33
33
  "scripts": {
34
+ "release": "../../scripts/release.sh",
34
35
  "semver": "../../scripts/semver.sh",
35
36
  "up": "../../scripts/up.sh"
36
37
  },
37
38
  "dependencies": {
38
39
  "lockfile-lint": "^4.13.2",
39
- "npm-package-json-lint": "^7.1.0",
40
- "npm-package-json-lint-config-default": "^6.0.0"
40
+ "npm-package-json-lint": "^8.0.0",
41
+ "npm-package-json-lint-config-default": "^7.0.0"
41
42
  },
42
43
  "engines": {
43
44
  "node": ">=18.18"
@@ -2,22 +2,16 @@
2
2
 
3
3
  import { omit } from 'radash';
4
4
 
5
- const PLUGINS = {
5
+ const DEFAULT_PLUGINS = {
6
6
  /** @see [prettier-plugin-jsdoc](https://github.com/hosseinmd/prettier-plugin-jsdoc) */
7
7
  jsdoc: true,
8
8
 
9
9
  /** @see [prettier-plugin-packagejson](https://github.com/matzkoh/prettier-plugin-packagejson) */
10
10
  packagejson: true,
11
11
 
12
- /** @see [plugin-php](https://github.com/prettier/plugin-php) */
13
- php: false,
14
-
15
12
  /** @see [plugin-pug](https://github.com/prettier/plugin-pug) */
16
13
  pug: true,
17
14
 
18
- /** @see [plugin-ruby](https://github.com/prettier/plugin-ruby) */
19
- ruby: false,
20
-
21
15
  /** @see [prettier-plugin-sh](https://github.com/astorije/prettier-plugin-sh) */
22
16
  sh: true,
23
17
 
@@ -27,17 +21,33 @@ const PLUGINS = {
27
21
  /** @see [prettier-plugin-sort-json](https://github.com/Gudahtt/prettier-plugin-sort-json) */
28
22
  'sort-json': true,
29
23
 
24
+ /** @see [plugin-xml](https://github.com/prettier/plugin-xml) */
25
+ xml: true,
26
+ };
27
+
28
+ const OPTIONAL_PLUGINS = {
29
+ /** @see [plugin-php](https://github.com/prettier/plugin-php) */
30
+ php: false,
31
+
32
+ /** @see [plugin-ruby](https://github.com/prettier/plugin-ruby) */
33
+ ruby: false,
34
+
30
35
  /** @see [prettier-plugin-sql](https://github.com/un-ts/prettier/tree/master/packages/sql) */
31
36
  sql: false,
32
37
 
33
38
  /** @see [prettier-plugin-svelte](https://github.com/sveltejs/prettier-plugin-svelte) */
34
39
  svelte: false,
40
+ };
35
41
 
42
+ const CODESTYLE_PLUGINS = {
36
43
  /** @see [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss) */
37
44
  tailwindcss: false,
45
+ };
38
46
 
39
- /** @see [plugin-xml](https://github.com/prettier/plugin-xml) */
40
- xml: true,
47
+ const PLUGINS = {
48
+ ...DEFAULT_PLUGINS,
49
+ ...OPTIONAL_PLUGINS,
50
+ ...CODESTYLE_PLUGINS,
41
51
  };
42
52
 
43
53
  /**
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-prettier",
3
- "version": "18.3.1",
3
+ "version": "18.5.0",
4
4
  "private": false,
5
5
  "description": "prettier config",
6
6
  "keywords": [
@@ -38,15 +38,15 @@
38
38
  "@prettier/plugin-pug": "^3.0.0",
39
39
  "@prettier/plugin-ruby": "^4.0.4",
40
40
  "@prettier/plugin-xml": "^3.4.1",
41
- "prettier": "^3.2.5",
41
+ "prettier": "^3.3.1",
42
42
  "prettier-plugin-jsdoc": "^1.3.0",
43
43
  "prettier-plugin-packagejson": "^2.5.0",
44
44
  "prettier-plugin-sh": "^0.14.0",
45
45
  "prettier-plugin-solidity": "^1.3.1",
46
46
  "prettier-plugin-sort-json": "^4.0.0",
47
47
  "prettier-plugin-sql": "^0.18.0",
48
- "prettier-plugin-svelte": "^3.2.3",
49
- "prettier-plugin-tailwindcss": "^0.5.14",
48
+ "prettier-plugin-svelte": "^3.2.4",
49
+ "prettier-plugin-tailwindcss": "^0.6.2",
50
50
  "radash": "^12.1.0"
51
51
  },
52
52
  "engines": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-stylelint",
3
- "version": "45.8.1",
3
+ "version": "45.9.0",
4
4
  "private": false,
5
5
  "description": "Stylelint config",
6
6
  "keywords": [
@@ -37,7 +37,7 @@
37
37
  "@double-great/stylelint-a11y": "^3.0.2",
38
38
  "postcss": "^8.4.38",
39
39
  "postcss-html": "^1.7.0",
40
- "prettier": "^3.2.5",
40
+ "prettier": "^3.3.1",
41
41
  "stylelint": "^16.6.1",
42
42
  "stylelint-at-rule-no-children": "^0.3.1",
43
43
  "stylelint-color-format": "^1.1.0",
@@ -54,7 +54,7 @@
54
54
  "stylelint-order": "^6.0.4",
55
55
  "stylelint-plugin-logical-css": "^1.2.1",
56
56
  "stylelint-prettier": "^5.0.0",
57
- "stylelint-scss": "^6.3.0",
57
+ "stylelint-scss": "^6.3.1",
58
58
  "stylelint-selector-no-empty": "^1.0.9",
59
59
  "stylelint-use-nesting": "^5.1.1"
60
60
  },