@geoql/doctor-core 1.3.2 → 1.3.3
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/dist/index.js +10 -10
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -4176,11 +4176,11 @@ const DEFAULT_INCLUDE = [
|
|
|
4176
4176
|
"**/*.jsx"
|
|
4177
4177
|
];
|
|
4178
4178
|
const DEFAULT_EXCLUDE = [
|
|
4179
|
-
"node_modules",
|
|
4180
|
-
"dist",
|
|
4181
|
-
"
|
|
4182
|
-
"
|
|
4183
|
-
"coverage"
|
|
4179
|
+
"**/node_modules/**",
|
|
4180
|
+
"**/dist/**",
|
|
4181
|
+
"**/.nuxt/**",
|
|
4182
|
+
"**/.output/**",
|
|
4183
|
+
"**/coverage/**"
|
|
4184
4184
|
];
|
|
4185
4185
|
function countRuleCounts(diagnostics) {
|
|
4186
4186
|
const counts = {};
|
|
@@ -4352,11 +4352,11 @@ const BUILT_IN_RECOMMENDED = {
|
|
|
4352
4352
|
"**/*.jsx"
|
|
4353
4353
|
],
|
|
4354
4354
|
exclude: [
|
|
4355
|
-
"node_modules",
|
|
4356
|
-
"dist",
|
|
4357
|
-
"
|
|
4358
|
-
"
|
|
4359
|
-
"coverage"
|
|
4355
|
+
"**/node_modules/**",
|
|
4356
|
+
"**/dist/**",
|
|
4357
|
+
"**/.nuxt/**",
|
|
4358
|
+
"**/.output/**",
|
|
4359
|
+
"**/coverage/**"
|
|
4360
4360
|
],
|
|
4361
4361
|
failOn: "error",
|
|
4362
4362
|
threshold: 0,
|