@storm-software/linting-tools 1.90.1 → 1.93.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/CHANGELOG.md +19 -0
- package/README.md +1 -1
- package/package.json +1 -1
- package/syncpack/config.json +105 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
## 1.93.0 (2024-12-01)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
- **storm-ops:** Added `lint-sherif` script to the CI workflow ([906e0c2b](https://github.com/storm-software/storm-ops/commit/906e0c2b))
|
|
6
|
+
|
|
7
|
+
## 1.92.0 (2024-11-30)
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
- **storm-ops:** Added `sherif` and `knip` linting to CI pipeline ([181d782a](https://github.com/storm-software/storm-ops/commit/181d782a))
|
|
12
|
+
- **linting-tools:** Added `syncpack` config and CI reusable actions ([a95fd8e5](https://github.com/storm-software/storm-ops/commit/a95fd8e5))
|
|
13
|
+
|
|
14
|
+
## 1.91.0 (2024-11-18)
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
- **build-tools:** Allow default package.json exports by no longer overriding them ([f19fc362](https://github.com/storm-software/storm-ops/commit/f19fc362))
|
|
19
|
+
|
|
1
20
|
## 1.90.1 (2024-11-10)
|
|
2
21
|
|
|
3
22
|
### Bug Fixes
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/linting-tools",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.93.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "⚡ A package containing various linting tools used to validate syntax, enforce design standards, and format code in a Storm workspace.",
|
|
6
6
|
"repository": {
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
{
|
|
2
|
+
"customTypes": {
|
|
3
|
+
"dev": {
|
|
4
|
+
"strategy": "versionsByName",
|
|
5
|
+
"path": "devDependencies"
|
|
6
|
+
},
|
|
7
|
+
"local": {
|
|
8
|
+
"strategy": "name~version",
|
|
9
|
+
"namePath": "name",
|
|
10
|
+
"path": "version"
|
|
11
|
+
},
|
|
12
|
+
"overrides": {
|
|
13
|
+
"strategy": "versionsByName",
|
|
14
|
+
"path": "overrides"
|
|
15
|
+
},
|
|
16
|
+
"peer": {
|
|
17
|
+
"strategy": "versionsByName",
|
|
18
|
+
"path": "peerDependencies"
|
|
19
|
+
},
|
|
20
|
+
"pnpmOverrides": {
|
|
21
|
+
"strategy": "versionsByName",
|
|
22
|
+
"path": "pnpm.overrides"
|
|
23
|
+
},
|
|
24
|
+
"prod": {
|
|
25
|
+
"strategy": "versionsByName",
|
|
26
|
+
"path": "dependencies"
|
|
27
|
+
},
|
|
28
|
+
"resolutions": {
|
|
29
|
+
"strategy": "versionsByName",
|
|
30
|
+
"path": "resolutions"
|
|
31
|
+
},
|
|
32
|
+
"engines": {
|
|
33
|
+
"path": "engines",
|
|
34
|
+
"strategy": "versionsByName"
|
|
35
|
+
},
|
|
36
|
+
"packageManager": {
|
|
37
|
+
"path": "packageManager",
|
|
38
|
+
"strategy": "name@version"
|
|
39
|
+
},
|
|
40
|
+
"nodeEngine": {
|
|
41
|
+
"path": "engines.node",
|
|
42
|
+
"strategy": "version"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"dependencyTypes": ["**"],
|
|
46
|
+
"filter": ".",
|
|
47
|
+
"formatBugs": true,
|
|
48
|
+
"formatRepository": true,
|
|
49
|
+
"indent": " ",
|
|
50
|
+
"semverGroups": [],
|
|
51
|
+
"sortAz": [
|
|
52
|
+
"bin",
|
|
53
|
+
"contributors",
|
|
54
|
+
"dependencies",
|
|
55
|
+
"devDependencies",
|
|
56
|
+
"keywords",
|
|
57
|
+
"peerDependencies",
|
|
58
|
+
"resolutions",
|
|
59
|
+
"scripts"
|
|
60
|
+
],
|
|
61
|
+
"sortExports": [
|
|
62
|
+
"types",
|
|
63
|
+
"node-addons",
|
|
64
|
+
"node",
|
|
65
|
+
"browser",
|
|
66
|
+
"import",
|
|
67
|
+
"require",
|
|
68
|
+
"development",
|
|
69
|
+
"production",
|
|
70
|
+
"default"
|
|
71
|
+
],
|
|
72
|
+
"sortFirst": ["name", "description", "version", "author"],
|
|
73
|
+
"sortPackages": true,
|
|
74
|
+
"source": [
|
|
75
|
+
"package.json",
|
|
76
|
+
"packages/*/package.json",
|
|
77
|
+
"apps/*/package.json",
|
|
78
|
+
"libs/*/package.json",
|
|
79
|
+
"tools/*/package.json"
|
|
80
|
+
],
|
|
81
|
+
"specifierTypes": ["**"],
|
|
82
|
+
"versionGroups": [
|
|
83
|
+
{
|
|
84
|
+
"dependencies": ["@storm-software/**", "@storm-stack/**"],
|
|
85
|
+
"pinVersion": "latest",
|
|
86
|
+
"label": "Storm Software Dependencies should all use the latest version"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"dependencies": ["@types/**"],
|
|
90
|
+
"dependencyTypes": ["!dev"],
|
|
91
|
+
"isBanned": true,
|
|
92
|
+
"label": "@types packages should only be under devDependencies"
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"dependencies": ["@nx/**", "nx"],
|
|
96
|
+
"pinVersion": "^20.0.6",
|
|
97
|
+
"label": "Nx Dependencies should all use the same version"
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"dependencies": ["@tamagui/**", "tamagui"],
|
|
101
|
+
"pinVersion": "^1.116.15",
|
|
102
|
+
"label": "Tamagui Dependencies should all use the same version"
|
|
103
|
+
}
|
|
104
|
+
]
|
|
105
|
+
}
|