@daiyam/artifact-lang-ts 0.5.5 → 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",
@@ -63,6 +72,9 @@
63
72
  "error",
64
73
  "always"
65
74
  ],
75
+ "@typescript-eslint/parameter-properties": "off",
76
+ "@typescript-eslint/prefer-promise-reject-errors": "off",
77
+ "@typescript-eslint/return-await": "off",
66
78
  "arrow-parens": [
67
79
  "error",
68
80
  "always"
@@ -104,12 +116,14 @@
104
116
  "no-else-return": "off",
105
117
  "no-lonely-if": "off",
106
118
  "no-negated-condition": "off",
119
+ "object-curly-newline": "off",
107
120
  "one-var": [
108
121
  "error",
109
122
  "never"
110
123
  ],
111
124
  "unicorn/empty-brace-spaces": "off",
112
125
  "unicorn/no-array-callback-reference": "off",
126
+ "unicorn/no-length-as-slice-end": "off",
113
127
  "unicorn/no-object-as-default-parameter": "off",
114
128
  "unicorn/prefer-json-parse-buffer": "off",
115
129
  "unicorn/prefer-module": "off",
@@ -120,10 +134,18 @@
120
134
  "error",
121
135
  {
122
136
  "replacements": {
137
+ "arg": false,
123
138
  "args": false,
139
+ "dir": false,
124
140
  "err": false,
141
+ "fn": false,
125
142
  "func": false,
126
- "pkg": false
143
+ "i": false,
144
+ "j": false,
145
+ "mod": false,
146
+ "num": false,
147
+ "pkg": false,
148
+ "str": false
127
149
  }
128
150
  }
129
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.5",
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": "58b5ed9151ff503f441c419030706102fa01a023"
34
+ "gitHead": "5fff6c16ace6953d55a3daee53ac9896ebf53914"
35
35
  }