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
The tool's command name is `arduino-lint`. Previously, this was also used as the project name but it was decided that
"Arduino Lint" is a better project name. `arduino-lint` should only be used when referring to the command.
High quality bug reports and feature requests are valuable contributions to the arduino-lint project.
27
+
High quality bug reports and feature requests are valuable contributions to the Arduino Lint project.
28
28
29
29
### Before reporting an issue
30
30
@@ -63,7 +63,7 @@ submitting a PR:
63
63
- <aid="breaking"></a> If the PR contains a breaking change, please start the commit message and PR title with the
64
64
string **[breaking]**. Don't forget to describe in the PR description what changes users might need to make in their
65
65
workflow or application due to this PR. A breaking change is a change that forces users to change their command-line
66
-
invocations or parsing of the JSON formatted output when upgrading from an older version of arduino-lint.
66
+
invocations or parsing of the JSON formatted output when upgrading from an older version of Arduino Lint.
67
67
- PR titles indirectly become part of the CHANGELOG so it's crucial to provide a good record of **what** change is being
68
68
made in the title; **why** it was made will go in the PR description, along with
69
69
[a link to a GitHub issue](https://docs.github.com/en/free-pro-team@latest/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue)
@@ -76,7 +76,7 @@ submitting a PR:
76
76
77
77
### Development prerequisites
78
78
79
-
To build arduino-lint from sources you need the following tools to be available in your local environment:
79
+
To build Arduino Lint from sources you need the following tools to be available in your local environment:
80
80
81
81
-[Go](https://golang.org/doc/install) version 1.14 or later
82
82
-[Taskfile](https://taskfile.dev/#/installation) to help you run the most common tasks from the command line
@@ -123,7 +123,7 @@ To run only the Go unit tests, run:
123
123
task go:test-unit
124
124
```
125
125
126
-
By default, all tests for all arduino-lint's Go packages are run. To run unit tests for only one or more specific
126
+
By default, all tests for all Arduino Lint's Go packages are run. To run unit tests for only one or more specific
127
127
packages, you can set the `TARGETS` environment variable, e.g.:
Copy file name to clipboardExpand all lines: docs/installation.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,7 @@
3
3
The script requires `sh`, which is always available on Linux and macOS. `sh` is not available by default on Windows. The
4
4
script can be run on Windows by installing [Git for Windows](https://gitforwindows.org/), then running it from Git Bash.
5
5
6
-
This script will install the latest version of arduino-lint to `$PWD/bin`:
6
+
This script will install the latest version of Arduino Lint to `$PWD/bin`:
7
7
8
8
```
9
9
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-lint/main/etc/install.sh | sh
@@ -15,10 +15,10 @@ If you want to target a different directory, for example `~/local/bin`, set the
15
15
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-lint/main/etc/install.sh | BINDIR=~/local/bin sh
16
16
```
17
17
18
-
If you would like to use the `arduino-lint` command from any location, install arduino-lint to a directory already in
19
-
your `PATH` or add the arduino-lint installation path to your `PATH` environment variable.
18
+
If you would like to use the `arduino-lint` command from any location, install Arduino Lint to a directory already in
19
+
your `PATH` or add the Arduino Lint installation path to your `PATH` environment variable.
20
20
21
-
If you want to download a specific arduino-lint version, for example `0.9.0` or `nightly-latest`, pass the version
21
+
If you want to download a specific Arduino Lint version, for example `0.9.0` or `nightly-latest`, pass the version
0 commit comments