eslint-config-webpack 4.6.0 → 4.6.1
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/configs/markdown.js +14 -0
- package/package.json +1 -1
package/configs/markdown.js
CHANGED
|
@@ -59,14 +59,28 @@ async function getMarkdownRecommendedConfig() {
|
|
|
59
59
|
|
|
60
60
|
"unicorn/no-unused-properties": "off",
|
|
61
61
|
|
|
62
|
+
// Allow to use any packages in documentation
|
|
62
63
|
"n/no-unpublished-require": "off",
|
|
63
64
|
|
|
65
|
+
// Allow to use any packages in documentation
|
|
64
66
|
"n/no-unpublished-import": "off",
|
|
65
67
|
|
|
68
|
+
// Allow to use any ES builtins in documentation
|
|
69
|
+
"m/no-unsupported-features/es-builtins": "off",
|
|
70
|
+
|
|
71
|
+
// Allow to use any ES syntax in documentation
|
|
72
|
+
"n/no-unsupported-features/es-syntax": "off",
|
|
73
|
+
|
|
74
|
+
// Allow to use any Node.js API in documentation
|
|
75
|
+
"n/no-unsupported-features/node-builtins": "off",
|
|
76
|
+
|
|
77
|
+
// Allow to use any packages in documentation
|
|
66
78
|
"n/no-missing-import": "off",
|
|
67
79
|
|
|
80
|
+
// Allow to use any packages in documentation
|
|
68
81
|
"n/no-missing-require": "off",
|
|
69
82
|
|
|
83
|
+
// Useful for documentation
|
|
70
84
|
"n/no-process-exit": "off",
|
|
71
85
|
|
|
72
86
|
"import/no-unresolved": "off",
|