@daiyam/artifact-lang-ts 0.5.6 → 0.6.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.
@@ -0,0 +1,5 @@
1
+ {
2
+ "devDependencies": {
3
+ "@types/node": "^20.14.8"
4
+ }
5
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "devDependencies": {
3
+ "@types/node": "^22.9.0"
4
+ }
5
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "devDependencies": {
3
+ "@types/node": "^24.1.0"
4
+ }
5
+ }
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "ignores": [
3
- "*.config.js"
3
+ "*.config.js",
4
+ "*.config.ts"
4
5
  ],
5
6
  "rules": {
6
7
  "@typescript-eslint/ban-types": "off",
@@ -48,11 +49,19 @@
48
49
  {
49
50
  "selector": "variable",
50
51
  "modifiers": ["const", "global"],
51
- "format": ["camelCase", "UPPER_CASE"]
52
+ "format": ["camelCase", "UPPER_CASE"],
53
+ "filter": {
54
+ "regex": "^(__filename|__dirname)$",
55
+ "match": false
56
+ }
52
57
  },
53
58
  {
54
59
  "selector": "variable",
55
- "format": ["camelCase"]
60
+ "format": ["camelCase"],
61
+ "filter": {
62
+ "regex": "^(__filename|__dirname)$",
63
+ "match": false
64
+ }
56
65
  }
57
66
  ],
58
67
  "@typescript-eslint/no-confusing-void-expression": "off",
@@ -125,13 +134,18 @@
125
134
  "error",
126
135
  {
127
136
  "replacements": {
137
+ "arg": false,
128
138
  "args": false,
129
139
  "dir": false,
130
140
  "err": false,
141
+ "fn": false,
131
142
  "func": false,
132
143
  "i": false,
133
144
  "j": false,
134
- "pkg": false
145
+ "mod": false,
146
+ "num": false,
147
+ "pkg": false,
148
+ "str": false
135
149
  }
136
150
  }
137
151
  ]
@@ -1,6 +1,5 @@
1
1
  {
2
2
  "devDependencies": {
3
- "@types/node": "^20.14.8",
4
3
  "typescript": "^5.7.3",
5
4
  "xo": "0.60.0"
6
5
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daiyam/artifact-lang-ts",
3
- "version": "0.5.6",
3
+ "version": "0.6.0",
4
4
  "description": "The configuration for my typescript projects",
5
5
  "author": {
6
6
  "name": "Baptiste Augrain",
@@ -31,5 +31,5 @@
31
31
  "project-template",
32
32
  "scaffold"
33
33
  ],
34
- "gitHead": "9bfce24f6bebbcb5f34924e9aa2db8948f213d6a"
34
+ "gitHead": "5fff6c16ace6953d55a3daee53ac9896ebf53914"
35
35
  }