@daiyam/artifact-lang-ts 0.8.2 → 0.9.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/.artifactrc.yml +9 -5
- package/configs/.xo-config.json +8 -1
- package/package.json +2 -2
package/.artifactrc.yml
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
|
-
$schema: https://raw.githubusercontent.com/zokugun/artifact/v0.
|
|
1
|
+
$schema: https://raw.githubusercontent.com/zokugun/artifact/v0.9.0/schemas/v2/package.json
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
journeys:
|
|
4
|
+
- name: xo
|
|
5
|
+
travels:
|
|
6
|
+
- path: .xo-config.json
|
|
5
7
|
route:
|
|
6
|
-
|
|
8
|
+
mapSort:
|
|
7
9
|
compose:
|
|
8
10
|
ignores: listConcat
|
|
9
11
|
overrides: listConcat
|
|
10
12
|
plugins: listConcat
|
|
11
|
-
rules:
|
|
13
|
+
rules:
|
|
14
|
+
- mapConcat
|
|
15
|
+
- mapSort
|
|
12
16
|
$$default: overwrite
|
package/configs/.xo-config.json
CHANGED
|
@@ -81,6 +81,12 @@
|
|
|
81
81
|
"always"
|
|
82
82
|
],
|
|
83
83
|
"@typescript-eslint/parameter-properties": "off",
|
|
84
|
+
"@typescript-eslint/prefer-nullish-coalescing": [
|
|
85
|
+
"error",
|
|
86
|
+
{
|
|
87
|
+
"ignoreConditionalTests": true
|
|
88
|
+
}
|
|
89
|
+
],
|
|
84
90
|
"@typescript-eslint/prefer-promise-reject-errors": "off",
|
|
85
91
|
"@typescript-eslint/return-await": "off",
|
|
86
92
|
"arrow-parens": [
|
|
@@ -154,7 +160,8 @@
|
|
|
154
160
|
"mod": false,
|
|
155
161
|
"num": false,
|
|
156
162
|
"pkg": false,
|
|
157
|
-
"str": false
|
|
163
|
+
"str": false,
|
|
164
|
+
"temp": false
|
|
158
165
|
}
|
|
159
166
|
}
|
|
160
167
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daiyam/artifact-lang-ts",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.1",
|
|
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": "
|
|
34
|
+
"gitHead": "bc41f859d881b1baff414b265a54270751d8200b"
|
|
35
35
|
}
|