@effect-app/eslint-shared-config 0.3.3 → 0.3.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/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
|
-
diff --git a/
|
|
2
|
-
index
|
|
3
|
-
--- a/
|
|
4
|
-
+++ b/
|
|
5
|
-
@@ -117,7 +
|
|
1
|
+
diff --git a/dist/lib/dprint/dprint.js b/dist/lib/dprint/dprint.js
|
|
2
|
+
index 124201205c4c8f12942bae72018e4bc6351d5c2f..d73dc4f147957331d4bdd29b9451f7947d4312a5 100644
|
|
3
|
+
--- a/dist/lib/dprint/dprint.js
|
|
4
|
+
+++ b/dist/lib/dprint/dprint.js
|
|
5
|
+
@@ -117,7 +117,8 @@ function getFormatter(filePath, configName, configFile, log = true) {
|
|
6
6
|
return formatter;
|
|
7
7
|
}
|
|
8
|
-
else if (isPluginName(configName)) {
|
|
8
|
+
else if (isPluginName(configName) && log) {
|
|
9
9
|
- console.warn("File %s not supported by %s", filePath, pluginsName[configName]);
|
|
10
|
+
+ // silenced to reduce noise
|
|
10
11
|
+ //console.warn("File %s not supported by %s", filePath, pluginsName[configName]);
|
|
11
12
|
}
|
|
12
13
|
}
|
|
13
|
-
else if (isPluginName(configName)) {
|
|
14
|
+
else if (isPluginName(configName) && log) {
|