libmodulor 0.18.0 → 0.18.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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v0.18.1 (2025-06-11)
4
+
5
+ **Misc**
6
+
7
+ - Adjust `CreateProject` biome config
8
+
3
9
  ## v0.18.0 (2025-06-11)
4
10
 
5
11
  **Misc**
package/README.md CHANGED
@@ -17,4 +17,4 @@ If you think you can help in any way, feel free to contact me (cf. `author` in `
17
17
 
18
18
  ## ⚖️ License
19
19
 
20
- [LGPL-3.0](https://github.com/c100k/libmodulor/blob/v0.18.0/LICENSE)
20
+ [LGPL-3.0](https://github.com/c100k/libmodulor/blob/v0.18.1/LICENSE)
@@ -8,9 +8,35 @@ src/products/**/rn/.expo
8
8
  `;
9
9
  const BIOME_JSON = `{
10
10
  "$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
11
+ "assist": {
12
+ "actions": {
13
+ "source": {
14
+ "organizeImports": {
15
+ "level": "on",
16
+ "options": {
17
+ "groups": [
18
+ [":NODE:"],
19
+ ":BLANK_LINE:",
20
+ [":PACKAGE:"],
21
+ ":BLANK_LINE:",
22
+ [":PATH:"]
23
+ ]
24
+ }
25
+ },
26
+ "useSortedAttributes": "on",
27
+ "useSortedKeys": "on"
28
+ }
29
+ }
30
+ },
11
31
  "files": {
12
- "ignore": ["coverage", "dist", "node_modules"],
13
- "ignoreUnknown": true
32
+ "ignoreUnknown": true,
33
+ "includes": [
34
+ "**",
35
+ "!**/coverage",
36
+ "!**/dist",
37
+ "!**/node_modules",
38
+ "!**/package.json"
39
+ ]
14
40
  },
15
41
  "formatter": {
16
42
  "indentStyle": "space",
@@ -23,6 +49,25 @@ const BIOME_JSON = `{
23
49
  "parser": {
24
50
  "unsafeParameterDecoratorsEnabled": true
25
51
  }
52
+ },
53
+ "linter": {
54
+ "rules": {
55
+ "style": {
56
+ "noInferrableTypes": "error",
57
+ "noParameterAssign": "error",
58
+ "noUnusedTemplateLiteral": "error",
59
+ "noUselessElse": "error",
60
+ "useAsConstAssertion": "error",
61
+ "useDefaultParameterLast": "error",
62
+ "useEnumInitializers": "error",
63
+ "useNumberNamespace": "error",
64
+ "useSelfClosingElements": "error",
65
+ "useSingleVarDeclarator": "error"
66
+ },
67
+ "suspicious": {
68
+ "noConsole": "error"
69
+ }
70
+ }
26
71
  }
27
72
  }
28
73
  `;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "libmodulor",
3
3
  "description": "A TypeScript library to create platform-agnostic applications",
4
- "version": "0.18.0",
4
+ "version": "0.18.1",
5
5
  "license": "LGPL-3.0",
6
6
  "author": "Chafik H'nini <chafik.hnini@gmail.com>",
7
7
  "homepage": "https://libmodulor.c100k.eu",