You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Escape Markdown markup in rule reference Brief text
The primary purpose of text of the rule configuration's `Description` field is for display in the rule reference section
of the documentation website. For this reason, it is written in Markdown, and thus can be output as is.
The situation is different with the rule configuration's `Brief` field, since it is displayed prominently in the tool
output. For this reason, the use of Markdown would not be appropriate. This text may contain incidental markup characters
that would result in unwanted formatting and thus the `Brief` field text must be escaped for display on the website.
Copy file name to clipboardExpand all lines: ruledocsgen/testdata/golden/package-index.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -2,16 +2,16 @@ Arduino Lint provides 1 rules for the [`package-index`](https://arduino.github.i
2
2
3
3
---
4
4
5
-
<aid="IS001"></a>
5
+
<aid="IA004"></a>
6
6
7
-
## missing (`IS001`)
7
+
## packages[\*].name missing (`IA004`)
8
8
9
-
No package index file was found in the specified project path.
9
+
The package index has a package without a `name` property.
10
10
11
-
More information: [**here**](https://arduino.github.io/arduino-cli/latest/package_index_json-specification/)<br />
11
+
More information: [**here**](https://arduino.github.io/arduino-cli/latest/package_index_json-specification/#json-index-file-contents)<br />
0 commit comments