@shibanet0/datamitsu-config 0.0.3-alpha-4 → 0.0.3-alpha-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/datamitsu.config.js +8 -8
- package/package.json +1 -1
package/datamitsu.config.js
CHANGED
|
@@ -2894,7 +2894,7 @@ var mapOfApps = {
|
|
|
2894
2894
|
|
|
2895
2895
|
// package.json
|
|
2896
2896
|
var name = "@shibanet0/datamitsu-config";
|
|
2897
|
-
var version = "0.0.3-alpha-
|
|
2897
|
+
var version = "0.0.3-alpha-6";
|
|
2898
2898
|
|
|
2899
2899
|
// src/oxlint/index.ts
|
|
2900
2900
|
var finalized = {
|
|
@@ -3349,16 +3349,16 @@ var init = {
|
|
|
3349
3349
|
{
|
|
3350
3350
|
...oxlintConfig,
|
|
3351
3351
|
...env().DATAMITSU_DEV_MODE ? {
|
|
3352
|
-
$schema: tools.Path.forImport(
|
|
3353
|
-
tools.Path.join(context.datamitsuDir, "oxlint_configuration_schema.json")
|
|
3354
|
-
),
|
|
3355
3352
|
rules: oxlintConfig.rules
|
|
3356
3353
|
} : {
|
|
3357
|
-
extends:
|
|
3358
|
-
tools.Path.join(context.datamitsuDir, ".oxlintrc.json")
|
|
3359
|
-
|
|
3354
|
+
extends: [
|
|
3355
|
+
tools.Path.forImport(tools.Path.join(context.datamitsuDir, ".oxlintrc.json"))
|
|
3356
|
+
],
|
|
3360
3357
|
rules: void 0
|
|
3361
|
-
}
|
|
3358
|
+
},
|
|
3359
|
+
$schema: tools.Path.forImport(
|
|
3360
|
+
tools.Path.join(context.datamitsuDir, "oxlint_configuration_schema.json")
|
|
3361
|
+
)
|
|
3362
3362
|
},
|
|
3363
3363
|
null,
|
|
3364
3364
|
2
|