File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -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" ,
You can’t perform that action at this time.
0 commit comments