@dvukovic/style-guide 0.3.103 → 0.3.105
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 +1 -1
- package/package.json +13 -13
- package/src/eslint/plugins/jest.js +2 -0
- package/src/eslint/plugins/sonarjs.js +0 -1
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dvukovic/style-guide",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.105",
|
|
4
4
|
"description": "My own style guide",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -31,15 +31,15 @@
|
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@eslint-community/eslint-plugin-eslint-comments": "4.5.0",
|
|
33
33
|
"@eslint/compat": "^2.0.0",
|
|
34
|
-
"@next/eslint-plugin-next": "16.0.
|
|
34
|
+
"@next/eslint-plugin-next": "16.0.10",
|
|
35
35
|
"@prettier/plugin-xml": "3.4.2",
|
|
36
36
|
"@rimac-technology/eslint-plugin": "1.5.0",
|
|
37
37
|
"@stylistic/eslint-plugin": "5.6.1",
|
|
38
|
-
"@typescript-eslint/parser": "8.
|
|
39
|
-
"@vitest/eslint-plugin": "1.5.
|
|
38
|
+
"@typescript-eslint/parser": "8.49.0",
|
|
39
|
+
"@vitest/eslint-plugin": "1.5.2",
|
|
40
40
|
"eslint-plugin-es-x": "9.3.0",
|
|
41
41
|
"eslint-plugin-import-x": "4.16.1",
|
|
42
|
-
"eslint-plugin-jest": "29.
|
|
42
|
+
"eslint-plugin-jest": "29.4.0",
|
|
43
43
|
"eslint-plugin-mobx": "0.0.13",
|
|
44
44
|
"eslint-plugin-n": "17.23.1",
|
|
45
45
|
"eslint-plugin-playwright": "2.4.0",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"eslint-plugin-sonarjs": "3.0.5",
|
|
52
52
|
"eslint-plugin-sort-destructure-keys": "2.0.0",
|
|
53
53
|
"eslint-plugin-sort-keys-fix": "1.1.2",
|
|
54
|
-
"eslint-plugin-storybook": "10.1.
|
|
54
|
+
"eslint-plugin-storybook": "10.1.8",
|
|
55
55
|
"eslint-plugin-typescript-sort-keys": "3.3.0",
|
|
56
56
|
"eslint-plugin-unicorn": "62.0.0",
|
|
57
57
|
"eslint-plugin-unused-imports": "4.3.0",
|
|
@@ -66,22 +66,22 @@
|
|
|
66
66
|
"prettier-plugin-toml": "2.0.6",
|
|
67
67
|
"stylelint-no-unused-selectors": "1.0.40",
|
|
68
68
|
"stylelint-order": "7.0.0",
|
|
69
|
-
"typescript-eslint": "8.
|
|
69
|
+
"typescript-eslint": "8.49.0"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
|
72
|
-
"@storybook/react": "10.1.
|
|
72
|
+
"@storybook/react": "10.1.8",
|
|
73
73
|
"@types/eslint": "9.6.1",
|
|
74
74
|
"@types/jest": "30.0.0",
|
|
75
|
-
"@types/node": "24.10.
|
|
75
|
+
"@types/node": "24.10.4",
|
|
76
76
|
"@types/react": "19.2.7",
|
|
77
77
|
"cspell": "9.4.0",
|
|
78
|
-
"eslint": "9.39.
|
|
78
|
+
"eslint": "9.39.2",
|
|
79
79
|
"jest": "30.2.0",
|
|
80
80
|
"npm-package-json-lint": "9.0.0",
|
|
81
81
|
"prettier": "3.7.4",
|
|
82
|
-
"react": "19.2.
|
|
83
|
-
"release-it": "19.0
|
|
84
|
-
"storybook": "^10.1.
|
|
82
|
+
"react": "19.2.3",
|
|
83
|
+
"release-it": "19.1.0",
|
|
84
|
+
"storybook": "^10.1.8",
|
|
85
85
|
"stylelint": "16.26.1",
|
|
86
86
|
"typescript": "5.9.3",
|
|
87
87
|
"vitest": "^4.0.15"
|
|
@@ -49,6 +49,8 @@ export const jest = {
|
|
|
49
49
|
"jest/prefer-strict-equal": "error",
|
|
50
50
|
"jest/prefer-to-be": "error",
|
|
51
51
|
"jest/prefer-to-contain": "error",
|
|
52
|
+
"jest/prefer-to-have-been-called": "error",
|
|
53
|
+
"jest/prefer-to-have-been-called-times": "error",
|
|
52
54
|
"jest/prefer-to-have-length": "error",
|
|
53
55
|
"jest/prefer-todo": "error",
|
|
54
56
|
"jest/require-hook": "error",
|
|
@@ -79,7 +79,6 @@ export const sonarjs = {
|
|
|
79
79
|
"sonarjs/link-with-target-blank": "error",
|
|
80
80
|
"sonarjs/max-lines": "error",
|
|
81
81
|
"sonarjs/max-switch-cases": "error",
|
|
82
|
-
"sonarjs/max-union-size": "error",
|
|
83
82
|
"sonarjs/misplaced-loop-counter": "error",
|
|
84
83
|
"sonarjs/nested-control-flow": "error",
|
|
85
84
|
"sonarjs/new-operator-misuse": "error",
|