@storm-software/linting-tools 1.72.0 → 1.74.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 CHANGED
@@ -1,3 +1,17 @@
1
+ ## 1.74.0 (2024-08-17)
2
+
3
+
4
+ ### Features
5
+
6
+ - **linting-tools:** Added base folders to the `ls-lint.yml` configuration ([45a62685](https://github.com/storm-software/storm-ops/commit/45a62685))
7
+
8
+ ## 1.73.0 (2024-08-17)
9
+
10
+
11
+ ### Features
12
+
13
+ - **linting-tools:** Added ignore paths to the `ls-lint` base configuration ([a860a216](https://github.com/storm-software/storm-ops/commit/a860a216))
14
+
1
15
  ## 1.72.0 (2024-08-03)
2
16
 
3
17
 
@@ -1,8 +1,23 @@
1
1
  ls:
2
- .rs: snake_case
3
- .ts: kebab-case
4
- .js: kebab-case
5
- .d.ts: kebab-case
2
+ packages/**:
3
+ .ts: kebab-case
4
+ .js: kebab-case
5
+ .d.ts: kebab-case
6
+ libs/**:
7
+ .ts: kebab-case
8
+ .js: kebab-case
9
+ .d.ts: kebab-case
10
+ crates/**:
11
+ .rs: snake_case
12
+ apps/**:
13
+ .ts: kebab-case
14
+ .js: kebab-case
15
+ .d.ts: kebab-case
16
+ .rs: snake_case
17
+ tools/**:
18
+ .ts: kebab-case
19
+ .js: kebab-case
20
+ .d.ts: kebab-case
6
21
 
7
22
  ignore:
8
23
  - "**/node_modules"
@@ -11,3 +26,6 @@ ignore:
11
26
  - "**/coverage"
12
27
  - "**/__generated__"
13
28
  - "**/__test__"
29
+ - "**/.terragrunt-cache"
30
+ - "**/.cache"
31
+ - "**/.nx"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/linting-tools",
3
- "version": "1.72.0",
3
+ "version": "1.74.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": {