@shibanet0/datamitsu-config 0.0.1-alpha-23 → 0.0.1-alpha-24
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.js +29 -34
- package/package.json +2 -2
package/datamitsu.js
CHANGED
|
@@ -1789,7 +1789,7 @@ var mapOfApps = {
|
|
|
1789
1789
|
|
|
1790
1790
|
// package.json
|
|
1791
1791
|
var name = "@shibanet0/datamitsu-config";
|
|
1792
|
-
var version = "0.0.1-alpha-
|
|
1792
|
+
var version = "0.0.1-alpha-23";
|
|
1793
1793
|
var dependencies = {
|
|
1794
1794
|
"@antebudimir/eslint-plugin-vanilla-extract": "1.16.0",
|
|
1795
1795
|
"@commander-js/extra-typings": "14.0.0",
|
|
@@ -1798,7 +1798,7 @@ var dependencies = {
|
|
|
1798
1798
|
"@commitlint/format": "20.2.0",
|
|
1799
1799
|
"@commitlint/types": "20.2.0",
|
|
1800
1800
|
"@cspell/eslint-plugin": "9.4.0",
|
|
1801
|
-
"@datamitsu/datamitsu": "0.0.1-alpha-
|
|
1801
|
+
"@datamitsu/datamitsu": "0.0.1-alpha-61",
|
|
1802
1802
|
"@eslint/config-helpers": "0.5.0",
|
|
1803
1803
|
"@eslint/js": "9.39.2",
|
|
1804
1804
|
"@next/eslint-plugin-next": "16.1.1",
|
|
@@ -3049,19 +3049,19 @@ var toolsConfig = {
|
|
|
3049
3049
|
operations: {
|
|
3050
3050
|
fix: {
|
|
3051
3051
|
args: ["--quiet", "--fix", "-c", "{cwd}/eslint.config.js", "{files}"],
|
|
3052
|
+
batch: true,
|
|
3052
3053
|
command: "eslint",
|
|
3053
3054
|
globs: eslintGlobs,
|
|
3054
|
-
mode: "batch",
|
|
3055
3055
|
priority: toolPriority.eslint,
|
|
3056
|
-
|
|
3056
|
+
scope: "per-project"
|
|
3057
3057
|
},
|
|
3058
3058
|
lint: {
|
|
3059
3059
|
args: ["--quiet", "{files}"],
|
|
3060
|
+
batch: true,
|
|
3060
3061
|
command: "eslint",
|
|
3061
3062
|
globs: eslintGlobs,
|
|
3062
|
-
mode: "batch",
|
|
3063
3063
|
priority: toolPriority.eslint,
|
|
3064
|
-
|
|
3064
|
+
scope: "per-project"
|
|
3065
3065
|
}
|
|
3066
3066
|
},
|
|
3067
3067
|
projectTypes: ["npm-package"]
|
|
@@ -3085,19 +3085,15 @@ var toolsConfig = {
|
|
|
3085
3085
|
args: ["run", "--fix"],
|
|
3086
3086
|
command: "golangci-lint",
|
|
3087
3087
|
globs: ["**/*.go"],
|
|
3088
|
-
mode: "whole-project",
|
|
3089
3088
|
priority: toolPriority["golangci-lint"],
|
|
3090
|
-
|
|
3091
|
-
workingDir: "project-root"
|
|
3089
|
+
scope: "per-project"
|
|
3092
3090
|
},
|
|
3093
3091
|
lint: {
|
|
3094
3092
|
args: ["run"],
|
|
3095
3093
|
command: "golangci-lint",
|
|
3096
3094
|
globs: ["**/*.go"],
|
|
3097
|
-
mode: "whole-project",
|
|
3098
3095
|
priority: toolPriority["golangci-lint"],
|
|
3099
|
-
|
|
3100
|
-
workingDir: "project-root"
|
|
3096
|
+
scope: "per-project"
|
|
3101
3097
|
}
|
|
3102
3098
|
},
|
|
3103
3099
|
projectTypes: ["golang-package"]
|
|
@@ -3118,19 +3114,19 @@ var toolsConfig = {
|
|
|
3118
3114
|
operations: {
|
|
3119
3115
|
fix: {
|
|
3120
3116
|
args: ["--fix", "{files}"],
|
|
3117
|
+
batch: true,
|
|
3121
3118
|
command: "oxlint",
|
|
3122
3119
|
globs: oxlintGlobs,
|
|
3123
|
-
mode: "batch",
|
|
3124
3120
|
priority: toolPriority.oxlint,
|
|
3125
|
-
|
|
3121
|
+
scope: "per-project"
|
|
3126
3122
|
},
|
|
3127
3123
|
lint: {
|
|
3128
3124
|
args: ["{files}"],
|
|
3125
|
+
batch: true,
|
|
3129
3126
|
command: "oxlint",
|
|
3130
3127
|
globs: oxlintGlobs,
|
|
3131
|
-
mode: "batch",
|
|
3132
3128
|
priority: toolPriority.oxlint,
|
|
3133
|
-
|
|
3129
|
+
scope: "per-project"
|
|
3134
3130
|
}
|
|
3135
3131
|
},
|
|
3136
3132
|
projectTypes: ["npm-package", "typescript-project"]
|
|
@@ -3158,10 +3154,11 @@ var toolsConfig = {
|
|
|
3158
3154
|
tools.Path.join(facts().gitRoot, "prettier.config.js"),
|
|
3159
3155
|
"{files}"
|
|
3160
3156
|
],
|
|
3157
|
+
batch: true,
|
|
3161
3158
|
command: "prettier",
|
|
3162
3159
|
globs: prettierGlobs,
|
|
3163
|
-
|
|
3164
|
-
|
|
3160
|
+
priority: toolPriority.prettier,
|
|
3161
|
+
scope: "per-project"
|
|
3165
3162
|
},
|
|
3166
3163
|
lint: {
|
|
3167
3164
|
args: [
|
|
@@ -3171,10 +3168,11 @@ var toolsConfig = {
|
|
|
3171
3168
|
tools.Path.join(facts().gitRoot, "prettier.config.js"),
|
|
3172
3169
|
"{files}"
|
|
3173
3170
|
],
|
|
3171
|
+
batch: true,
|
|
3174
3172
|
command: "prettier",
|
|
3175
3173
|
globs: prettierGlobs,
|
|
3176
|
-
|
|
3177
|
-
|
|
3174
|
+
priority: toolPriority.prettier,
|
|
3175
|
+
scope: "per-project"
|
|
3178
3176
|
}
|
|
3179
3177
|
},
|
|
3180
3178
|
projectTypes: ["npm-package", "typescript-project"]
|
|
@@ -3213,19 +3211,19 @@ var toolsConfig = {
|
|
|
3213
3211
|
operations: {
|
|
3214
3212
|
fix: {
|
|
3215
3213
|
args: ["--quiet"],
|
|
3214
|
+
batch: false,
|
|
3216
3215
|
command: "sort-package-json",
|
|
3217
3216
|
globs: ["**/package.json"],
|
|
3218
|
-
mode: "per-file",
|
|
3219
3217
|
priority: toolPriority["sort-package-json"],
|
|
3220
|
-
|
|
3218
|
+
scope: "per-file"
|
|
3221
3219
|
},
|
|
3222
3220
|
lint: {
|
|
3223
3221
|
args: ["--check", "--quiet"],
|
|
3222
|
+
batch: false,
|
|
3224
3223
|
command: "sort-package-json",
|
|
3225
3224
|
globs: ["**/package.json"],
|
|
3226
|
-
mode: "per-file",
|
|
3227
3225
|
priority: toolPriority["sort-package-json"],
|
|
3228
|
-
|
|
3226
|
+
scope: "per-file"
|
|
3229
3227
|
}
|
|
3230
3228
|
},
|
|
3231
3229
|
projectTypes: ["npm-package", "typescript-project"]
|
|
@@ -3237,17 +3235,15 @@ var toolsConfig = {
|
|
|
3237
3235
|
args: ["fix", "--config", tools.Path.join(facts().gitRoot, ".syncpackrc.json")],
|
|
3238
3236
|
command: "syncpack",
|
|
3239
3237
|
globs: ["**/package.json"],
|
|
3240
|
-
mode: "whole-project",
|
|
3241
3238
|
priority: toolPriority.syncpack,
|
|
3242
|
-
|
|
3239
|
+
scope: "repository"
|
|
3243
3240
|
},
|
|
3244
3241
|
lint: {
|
|
3245
3242
|
args: ["lint", "--config", tools.Path.join(facts().gitRoot, ".syncpackrc.json")],
|
|
3246
3243
|
command: "syncpack",
|
|
3247
3244
|
globs: ["**/package.json"],
|
|
3248
|
-
mode: "whole-project",
|
|
3249
3245
|
priority: toolPriority.syncpack,
|
|
3250
|
-
|
|
3246
|
+
scope: "repository"
|
|
3251
3247
|
}
|
|
3252
3248
|
},
|
|
3253
3249
|
projectTypes: ["npm-package", "typescript-project"]
|
|
@@ -3264,9 +3260,8 @@ var toolsConfig = {
|
|
|
3264
3260
|
],
|
|
3265
3261
|
command: "tsc",
|
|
3266
3262
|
globs: ["**/*.d.ts", "**/*.ts", "**/*.mts", "**/*.cts", "**/*.tsx"],
|
|
3267
|
-
mode: "whole-project",
|
|
3268
3263
|
priority: toolPriority.tsc,
|
|
3269
|
-
|
|
3264
|
+
scope: "per-project"
|
|
3270
3265
|
}
|
|
3271
3266
|
},
|
|
3272
3267
|
projectTypes: ["typescript-project"]
|
|
@@ -3286,8 +3281,8 @@ var toolsConfig = {
|
|
|
3286
3281
|
],
|
|
3287
3282
|
command: "typstyle",
|
|
3288
3283
|
globs: ["**/*.typ"],
|
|
3289
|
-
|
|
3290
|
-
|
|
3284
|
+
priority: toolPriority.typstyle,
|
|
3285
|
+
scope: "per-file"
|
|
3291
3286
|
},
|
|
3292
3287
|
lint: {
|
|
3293
3288
|
args: [
|
|
@@ -3301,8 +3296,8 @@ var toolsConfig = {
|
|
|
3301
3296
|
],
|
|
3302
3297
|
command: "typstyle",
|
|
3303
3298
|
globs: ["**/*.typ"],
|
|
3304
|
-
|
|
3305
|
-
|
|
3299
|
+
priority: toolPriority.typstyle,
|
|
3300
|
+
scope: "per-file"
|
|
3306
3301
|
}
|
|
3307
3302
|
}
|
|
3308
3303
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shibanet0/datamitsu-config",
|
|
3
|
-
"version": "0.0.1-alpha-
|
|
3
|
+
"version": "0.0.1-alpha-24",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"license": "MIT",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"@commitlint/format": "20.2.0",
|
|
72
72
|
"@commitlint/types": "20.2.0",
|
|
73
73
|
"@cspell/eslint-plugin": "9.4.0",
|
|
74
|
-
"@datamitsu/datamitsu": "0.0.1-alpha-
|
|
74
|
+
"@datamitsu/datamitsu": "0.0.1-alpha-61",
|
|
75
75
|
"@eslint/config-helpers": "0.5.0",
|
|
76
76
|
"@eslint/js": "9.39.2",
|
|
77
77
|
"@next/eslint-plugin-next": "16.1.1",
|