@@ -21,10 +21,10 @@ There are several ways you can get involved:
2121
2222## Issue Reports
2323
24- Do you need help or have a question about using arduino-lint ? Support requests should be made to the
24+ Do you need help or have a question about using Arduino Lint ? Support requests should be made to the
2525[ Arduino forum] ( https://forum.arduino.cc/index.php?board=3.0 ) .
2626
27- 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.
2828
2929### Before reporting an issue
3030
@@ -63,7 +63,7 @@ submitting a PR:
6363- <a id =" breaking " ></a > If the PR contains a breaking change, please start the commit message and PR title with the
6464 string ** [ breaking] ** . Don't forget to describe in the PR description what changes users might need to make in their
6565 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 .
6767- PR titles indirectly become part of the CHANGELOG so it's crucial to provide a good record of ** what** change is being
6868 made in the title; ** why** it was made will go in the PR description, along with
6969 [ 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:
7676
7777### Development prerequisites
7878
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:
8080
8181- [ Go] ( https://golang.org/doc/install ) version 1.14 or later
8282- [ 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:
123123task go:test-unit
124124```
125125
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
127127packages, you can set the ` TARGETS ` environment variable, e.g.:
128128
129129```
@@ -144,11 +144,11 @@ TEST_REGEX='^TestFindProjects$' TARGETS=./internal/project task go:test-unit
144144
145145#### Integration tests
146146
147- Being a command line interface, arduino-lint is heavily interactive and it has to stay consistent in accepting the user
147+ Being a command line interface, Arduino Lint is heavily interactive and it has to stay consistent in accepting the user
148148input and providing the expected output and proper exit codes.
149149
150150For these reasons, in addition to regular unit tests the project has a suite of integration tests that actually run
151- arduino-lint in a different process and assess the options are correctly understood and the output is what we expect.
151+ ` arduino-lint ` in a different process and assess the options are correctly understood and the output is what we expect.
152152
153153##### Running tests
154154
@@ -227,7 +227,7 @@ https://arduino.github.io/arduino-lint/dev/
227227#### Local development
228228
229229The documentation consists of static content written over several Markdown files under the ` docs ` subfolder of the
230- arduino-lint repository, as well as the dynamically generated [ command line reference] ( commands/arduino-lint.md ) .
230+ Arduino Lint repository, as well as the dynamically generated [ command line reference] ( commands/arduino-lint.md ) .
231231
232232When working on the documentation, it is useful to be able to see the effect the changes will have on the generated
233233documentation website. You can build the documentation website and serve it from your personal computer by running the
@@ -269,7 +269,7 @@ Checks are automatically run on every pull request to verify that documentation
269269
270270#### Documentation publishing
271271
272- The arduino-lint git repository has a special branch called ` gh-pages ` that contains the generated HTML code for the
272+ The Arduino Lint git repository has a special branch called ` gh-pages ` that contains the generated HTML code for the
273273documentation website. Every time a change is pushed to this special branch, GitHub automatically triggers a deployment
274274to pull the change and publish a new version of the website. Do not open Pull Requests to push changes to the ` gh-pages `
275275branch; that will be done exclusively from the CI.
0 commit comments