arui-presets-lint 8.1.0 → 8.2.0-beta.1

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/README.md CHANGED
@@ -89,9 +89,11 @@ extends:
89
89
  extends:
90
90
  - ./node_modules/arui-presets-lint/lefthook/index.yml
91
91
 
92
- # Добавить сборку typescript на pre-commit:
92
+
93
93
  pre-commit:
94
94
  commands:
95
+
96
+ # Добавить сборку typescript на pre-commit:
95
97
  check-ts:
96
98
  run: npx --no-install tsc --noEmit
97
99
 
@@ -14,7 +14,7 @@ yarn remove eslint eslint-config-airbnb eslint-config-airbnb-typescript eslint-c
14
14
  ```
15
15
  -- отмечу, что никаких зависимостей с плагинами stylelint/eslint в проекте быть не должно, кроме тех, которые использует ваш локальный конфиг
16
16
 
17
- 2. Удалить конфигурации husky и lint-staged (могут находится в .husky, .huskyrc.js, package.json.husky, .lintstagedrc.js, package.json.lint-staged, итп)
17
+ 2. Удалить конфигурации husky и lint-staged (могут находится в .husky, .huskyrc.js, package.json.husky, .lintstagedrc.js, package.json.lint-staged, итп). Для husky 5+ нужно также удалить настройку .git/config `hooksPath = .husky` из `git/config`.
18
18
 
19
19
  3. Добавить в lefthook.yml следующее:
20
20
  ```yml
@@ -28,9 +28,10 @@ extends:
28
28
  extends:
29
29
  - ./node_modules/arui-presets-lint/lefthook/index.yml
30
30
 
31
- # Добавить сборку typescript на pre-commit:
32
31
  pre-commit:
33
32
  commands:
33
+
34
+ # Добавить сборку typescript на pre-commit:
34
35
  check-ts:
35
36
  run: npx --no-install tsc --noEmit
36
37
 
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "arui-presets-lint",
3
- "version": "8.1.0",
3
+ "version": "8.2.0-beta.1",
4
4
  "description": "Config files for arui-apps",
5
5
  "author": "core-ds contributors",
6
6
  "license": "MIT",
7
7
  "bin": "./cli/index.mjs",
8
8
  "dependencies": {
9
- "@alfalab/stylelint-core-vars": "1.7.0",
9
+ "@alfalab/stylelint-core-vars": "1.7.1",
10
10
  "@commitlint/cli": "18.4.4",
11
11
  "@commitlint/config-conventional": "18.4.4",
12
12
  "@typescript-eslint/eslint-plugin": "7.18.0",
@@ -23,18 +23,18 @@
23
23
  "eslint-plugin-react": "7.37.2",
24
24
  "eslint-plugin-react-hooks": "4.6.2",
25
25
  "eslint-plugin-simple-import-sort": "12.1.1",
26
- "eslint-plugin-unicorn": "56.0.0",
26
+ "eslint-plugin-unicorn": "56.0.1",
27
27
  "execa": "9.5.1",
28
28
  "kebab-case": "1.0.0",
29
- "lefthook": "1.8.2",
29
+ "lefthook": "1.8.4",
30
30
  "prettier": "3.3.3",
31
- "stylelint": "16.10.0"
31
+ "stylelint": "16.11.0"
32
32
  },
33
33
  "engines": {
34
34
  "node": ">=18.12.0"
35
35
  },
36
36
  "devDependencies": {
37
- "@alfalab/core-components": "47.25.0",
37
+ "@alfalab/core-components": "48.3.0",
38
38
  "@semantic-release/changelog": "6.0.3",
39
39
  "@semantic-release/commit-analyzer": "11.1.0",
40
40
  "@semantic-release/git": "10.0.1",
@@ -74,5 +74,5 @@
74
74
  "commitlint": {
75
75
  "extends": "./commitlint"
76
76
  },
77
- "packageManager": "yarn@4.5.1"
77
+ "packageManager": "yarn@4.5.3"
78
78
  }