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
[skip changelog] Use consistent indentation style in example snippets of package_index.json specification (#815)
* Use consistent index size for snippets in package_index.json specification
The predominant index size in the example snippets (as well as in Arduino's official package_index.json file) is two spaces. However, at some places in the example snippets indents of three or four spaces were used.
* Use true indentation level for package definition example snippet
All other example snippets in the documentation use the indentation level they will have in the full document, so for consistency the package definition snippet should do the same.
Copy file name to clipboardExpand all lines: docs/package_index_json-specification.md
+23-23Lines changed: 23 additions & 23 deletions
Original file line number
Diff line number
Diff line change
@@ -26,35 +26,35 @@ The root of the JSON index is an array of `packages`:
26
26
```json
27
27
{
28
28
"packages": [
29
-
PACKAGE_XXXX
30
-
]
29
+
PACKAGE_XXXX
30
+
]
31
31
}
32
32
```
33
33
34
34
3rd party vendors should use a single `PACKAGE_XXXX` that is a dictionary map with the vendor's metadata, a list of `PLATFORMS` and a list of `TOOLS`. For example:
0 commit comments