File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
packages/nxdoc/src/generators/generate-docs/templates/detail Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,11 @@ Run code style analyzers and apply fixes.
2020
2121Run 3rd party analyzers and apply fixes.
2222
23- ### diagnostics ()
23+ ### diagnostics
24+
25+ - (string) A space separated list of diagnostic ids to use as a filter when fixing code style or 3rd party analyzers.
26+
27+ - (array) A list of diagnostic ids to use as a filter when fixing code style or 3rd party analyzers.
2428
2529### include (array)
2630
Original file line number Diff line number Diff line change 88
99## Options <% Object.entries(schema.properties).forEach(([ property, config] ) => {%>
1010
11- ### <%= property%> (<%=config.type%>)
11+ ### <%= property%> <% if (!config.anyOf) { %> (<%=config.type%>)
1212
13- <%= config.description %>
14- <% })} %>
13+ <%= config.description %> <%} else { config.anyOf.forEach(x => {%>
14+
15+ - (<%= x.type %>): <%=x.description%>
16+ <% })}})} %>
You can’t perform that action at this time.
0 commit comments