@adbayb/stack 0.0.0-next-546fdb3 → 0.0.0-next-84816cd
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/configs/eslint/constants.js +2 -0
- package/configs/eslint/index.js +14 -14
- package/configs/eslint/presets/dependencies.js +14 -0
- package/configs/eslint/presets/eslint.js +3 -4
- package/configs/eslint/presets/import.js +9 -21
- package/configs/eslint/presets/jsdoc.js +1 -1
- package/configs/eslint/presets/node.js +4 -3
- package/configs/eslint/presets/react.js +27 -37
- package/configs/eslint/presets/sonar.js +1 -3
- package/configs/eslint/presets/stylistic.js +74 -71
- package/configs/eslint/presets/test.js +30 -5
- package/configs/eslint/presets/typescript.js +1 -2
- package/configs/eslint/presets/unicorn.js +8 -1
- package/dist/index.js +401 -401
- package/package.json +26 -28
- package/configs/eslint/presets/uncategorized.js +0 -42
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adbayb/stack",
|
|
3
|
-
"version": "0.0.0-next-
|
|
3
|
+
"version": "0.0.0-next-84816cd",
|
|
4
4
|
"description": "My opinionated JavaScript-based toolchain",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"stack",
|
|
@@ -39,39 +39,37 @@
|
|
|
39
39
|
"templates"
|
|
40
40
|
],
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@changesets/changelog-github": "^0.
|
|
43
|
-
"@changesets/cli": "^2.
|
|
44
|
-
"@commitlint/cli": "^20.
|
|
45
|
-
"@commitlint/config-conventional": "^20.
|
|
46
|
-
"@eslint-react/eslint-plugin": "^
|
|
47
|
-
"@eslint/compat": "^2.0.
|
|
48
|
-
"@stylistic/eslint-plugin": "^5.
|
|
49
|
-
"@vitest/eslint-plugin": "^1.
|
|
50
|
-
"eslint": "^
|
|
42
|
+
"@changesets/changelog-github": "^0.6.0",
|
|
43
|
+
"@changesets/cli": "^2.30.0",
|
|
44
|
+
"@commitlint/cli": "^20.5.0",
|
|
45
|
+
"@commitlint/config-conventional": "^20.5.0",
|
|
46
|
+
"@eslint-react/eslint-plugin": "^3.0.0",
|
|
47
|
+
"@eslint/compat": "^2.0.3",
|
|
48
|
+
"@stylistic/eslint-plugin": "^5.10.0",
|
|
49
|
+
"@vitest/eslint-plugin": "^1.6.13",
|
|
50
|
+
"eslint": "^10.1.0",
|
|
51
51
|
"eslint-config-prettier": "^10.1.8",
|
|
52
52
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
53
|
-
"eslint-plugin-depend": "^1.
|
|
54
|
-
"eslint-plugin-import-x": "^4.16.
|
|
55
|
-
"eslint-plugin-
|
|
56
|
-
"eslint-plugin-
|
|
57
|
-
"eslint-plugin-
|
|
58
|
-
"eslint-plugin-
|
|
59
|
-
"eslint-plugin-prettier": "^5.5.
|
|
60
|
-
"eslint-plugin-
|
|
61
|
-
"eslint-plugin-
|
|
62
|
-
"eslint-plugin-sort-keys-custom-order": "^2.2.1",
|
|
63
|
-
"eslint-plugin-unicorn": "^62.0.0",
|
|
53
|
+
"eslint-plugin-depend": "^1.5.0",
|
|
54
|
+
"eslint-plugin-import-x": "^4.16.2",
|
|
55
|
+
"eslint-plugin-jsdoc": "^62.8.0",
|
|
56
|
+
"eslint-plugin-mdx": "^3.7.0",
|
|
57
|
+
"eslint-plugin-n": "^17.24.0",
|
|
58
|
+
"eslint-plugin-perfectionist": "^5.7.0",
|
|
59
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
60
|
+
"eslint-plugin-sonarjs": "^4.0.2",
|
|
61
|
+
"eslint-plugin-unicorn": "^63.0.0",
|
|
64
62
|
"fdir": "^6.5.0",
|
|
65
|
-
"globals": "^
|
|
66
|
-
"prettier": "^3.
|
|
67
|
-
"prettier-plugin-packagejson": "^
|
|
63
|
+
"globals": "^17.4.0",
|
|
64
|
+
"prettier": "^3.8.1",
|
|
65
|
+
"prettier-plugin-packagejson": "^3.0.2",
|
|
68
66
|
"termost": "^1.9.0",
|
|
69
|
-
"turbo": "^2.
|
|
70
|
-
"typescript": "^
|
|
71
|
-
"typescript-eslint": "^8.
|
|
67
|
+
"turbo": "^2.8.20",
|
|
68
|
+
"typescript": "^6.0.2",
|
|
69
|
+
"typescript-eslint": "^8.57.2"
|
|
72
70
|
},
|
|
73
71
|
"devDependencies": {
|
|
74
|
-
"@types/node": "24.
|
|
72
|
+
"@types/node": "24.12.0",
|
|
75
73
|
"quickbundle": "2.16.0"
|
|
76
74
|
},
|
|
77
75
|
"publishConfig": {
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import sortKeysCustomOrderPlugin from "eslint-plugin-sort-keys-custom-order";
|
|
2
|
-
import dependPlugin from "eslint-plugin-depend";
|
|
3
|
-
|
|
4
|
-
import { createConfig } from "../helpers.js";
|
|
5
|
-
import { JAVASCRIPT_LIKE_FILES } from "../constants.js";
|
|
6
|
-
|
|
7
|
-
export const config = createConfig({
|
|
8
|
-
files: JAVASCRIPT_LIKE_FILES,
|
|
9
|
-
plugins: {
|
|
10
|
-
"depend": dependPlugin,
|
|
11
|
-
"sort-keys-custom-order": sortKeysCustomOrderPlugin,
|
|
12
|
-
},
|
|
13
|
-
rules: {
|
|
14
|
-
"depend/ban-dependencies": "error",
|
|
15
|
-
"sort-keys-custom-order/object-keys": [
|
|
16
|
-
"error",
|
|
17
|
-
{
|
|
18
|
-
orderedKeys: [
|
|
19
|
-
"id",
|
|
20
|
-
"key",
|
|
21
|
-
"name",
|
|
22
|
-
"title",
|
|
23
|
-
"label",
|
|
24
|
-
"description",
|
|
25
|
-
],
|
|
26
|
-
},
|
|
27
|
-
],
|
|
28
|
-
"sort-keys-custom-order/type-keys": [
|
|
29
|
-
"error",
|
|
30
|
-
{
|
|
31
|
-
orderedKeys: [
|
|
32
|
-
"id",
|
|
33
|
-
"key",
|
|
34
|
-
"name",
|
|
35
|
-
"title",
|
|
36
|
-
"label",
|
|
37
|
-
"description",
|
|
38
|
-
],
|
|
39
|
-
},
|
|
40
|
-
],
|
|
41
|
-
},
|
|
42
|
-
});
|