@shibanet0/datamitsu-config 0.0.3-alpha-3 → 0.0.3-alpha-4
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/datamitsu.config.js +3 -20
- package/package.json +1 -1
package/datamitsu.config.js
CHANGED
|
@@ -15,27 +15,11 @@ var oxlintrc_default = {
|
|
|
15
15
|
},
|
|
16
16
|
rules: {
|
|
17
17
|
"sort-keys": "off",
|
|
18
|
-
"no-duplicate-imports": "off",
|
|
19
18
|
"unicorn/prefer-query-selector": "off",
|
|
20
|
-
"no-lonely-if": "off",
|
|
21
19
|
"unicorn/prefer-string-raw": "off",
|
|
22
20
|
"array-type": "off",
|
|
23
|
-
"no-negated-condition": "off",
|
|
24
21
|
"arrow-body-style": "off",
|
|
25
|
-
"unicorn/prefer-global-this": "off",
|
|
26
|
-
"unicorn/consistent-function-scoping": "off",
|
|
27
|
-
"array-callback-return": "off",
|
|
28
|
-
"new-cap": "off",
|
|
29
|
-
"prefer-exponentiation-operator": "off",
|
|
30
|
-
"typescript-eslint/ban-types": "off",
|
|
31
|
-
"unicorn/prefer-top-level-await": "off",
|
|
32
|
-
"max-params": "off",
|
|
33
|
-
"no-promise-executor-return": "off",
|
|
34
|
-
"unicorn/no-useless-collection-argument": "off",
|
|
35
|
-
"unicorn/no-lonely-if": "off",
|
|
36
|
-
"no-map-spread": "off",
|
|
37
22
|
"capitalized-comments": "off",
|
|
38
|
-
"unicorn/prefer-array-some": "off",
|
|
39
23
|
eqeqeq: "off",
|
|
40
24
|
"func-names": "off",
|
|
41
25
|
"func-style": "off",
|
|
@@ -2910,7 +2894,7 @@ var mapOfApps = {
|
|
|
2910
2894
|
|
|
2911
2895
|
// package.json
|
|
2912
2896
|
var name = "@shibanet0/datamitsu-config";
|
|
2913
|
-
var version = "0.0.3-alpha-
|
|
2897
|
+
var version = "0.0.3-alpha-4";
|
|
2914
2898
|
|
|
2915
2899
|
// src/oxlint/index.ts
|
|
2916
2900
|
var finalized = {
|
|
@@ -3365,9 +3349,8 @@ var init = {
|
|
|
3365
3349
|
{
|
|
3366
3350
|
...oxlintConfig,
|
|
3367
3351
|
...env().DATAMITSU_DEV_MODE ? {
|
|
3368
|
-
$schema: tools.Path.
|
|
3369
|
-
context.datamitsuDir,
|
|
3370
|
-
"oxlint_configuration_schema.json"
|
|
3352
|
+
$schema: tools.Path.forImport(
|
|
3353
|
+
tools.Path.join(context.datamitsuDir, "oxlint_configuration_schema.json")
|
|
3371
3354
|
),
|
|
3372
3355
|
rules: oxlintConfig.rules
|
|
3373
3356
|
} : {
|