Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 373ab95

Browse files
committedDec 14, 2020
Rename tool to final name: arduino-lint
The previous "arduino-check" was the working title of the project.
1 parent ece3ff1 commit 373ab95

File tree

74 files changed

+308
-308
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+308
-308
lines changed
 

‎.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Build artifacts
2-
arduino-check
3-
arduino-check.exe
2+
arduino-lint
3+
arduino-lint.exe
44

55
# Test artifacts
66
coverage_unit.txt

‎README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
# arduino-check
1+
# arduino-lint
22

3-
`arduino-check` is a command line tool that automatically checks for common problems in your
3+
`arduino-lint` is a command line tool that automatically checks for common problems in your
44
[Arduino](https://www.arduino.cc/) projects:
55

66
- Sketches
77
- Libraries
88

99
## Usage
1010

11-
After installing `arduino-check`, run the command `arduino-check --help` for usage documentation.
11+
After installing `arduino-lint`, run the command `arduino-lint --help` for usage documentation.
1212

1313
A few additional configuration options only of use for internal/development use of the tool can be set via environment
1414
variables:
1515

16-
- `ARDUINO_CHECK_OFFICIAL` - Set to `"true"` to run the checks that only apply to official Arduino projects.
17-
- `ARDUINO_CHECK_LOG_LEVEL` - Messages with this level and above will be logged.
16+
- `ARDUINO_LINT_OFFICIAL` - Set to `"true"` to run the checks that only apply to official Arduino projects.
17+
- `ARDUINO_LINT_LOG_LEVEL` - Messages with this level and above will be logged.
1818
- Supported values: `trace`, `debug`, `info`, `warn`, `error`, `fatal`, `panic`
19-
- `ARDUINO_CHECK_LOG_FORMAT` - The output format for the logs.
19+
- `ARDUINO_LINT_LOG_FORMAT` - The output format for the logs.
2020
- Supported values: `text`, `json`

0 commit comments

Comments
 (0)
Please sign in to comment.