@daiyam/artifact-lang-ts 0.5.5 → 0.5.6
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/configs/.xo-config.json +8 -0
- package/package.json +2 -2
package/configs/.xo-config.json
CHANGED
|
@@ -63,6 +63,9 @@
|
|
|
63
63
|
"error",
|
|
64
64
|
"always"
|
|
65
65
|
],
|
|
66
|
+
"@typescript-eslint/parameter-properties": "off",
|
|
67
|
+
"@typescript-eslint/prefer-promise-reject-errors": "off",
|
|
68
|
+
"@typescript-eslint/return-await": "off",
|
|
66
69
|
"arrow-parens": [
|
|
67
70
|
"error",
|
|
68
71
|
"always"
|
|
@@ -104,12 +107,14 @@
|
|
|
104
107
|
"no-else-return": "off",
|
|
105
108
|
"no-lonely-if": "off",
|
|
106
109
|
"no-negated-condition": "off",
|
|
110
|
+
"object-curly-newline": "off",
|
|
107
111
|
"one-var": [
|
|
108
112
|
"error",
|
|
109
113
|
"never"
|
|
110
114
|
],
|
|
111
115
|
"unicorn/empty-brace-spaces": "off",
|
|
112
116
|
"unicorn/no-array-callback-reference": "off",
|
|
117
|
+
"unicorn/no-length-as-slice-end": "off",
|
|
113
118
|
"unicorn/no-object-as-default-parameter": "off",
|
|
114
119
|
"unicorn/prefer-json-parse-buffer": "off",
|
|
115
120
|
"unicorn/prefer-module": "off",
|
|
@@ -121,8 +126,11 @@
|
|
|
121
126
|
{
|
|
122
127
|
"replacements": {
|
|
123
128
|
"args": false,
|
|
129
|
+
"dir": false,
|
|
124
130
|
"err": false,
|
|
125
131
|
"func": false,
|
|
132
|
+
"i": false,
|
|
133
|
+
"j": false,
|
|
126
134
|
"pkg": false
|
|
127
135
|
}
|
|
128
136
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@daiyam/artifact-lang-ts",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.6",
|
|
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": "9bfce24f6bebbcb5f34924e9aa2db8948f213d6a"
|
|
35
35
|
}
|