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 dcda76a

Browse files
authoredDec 14, 2020
Merge pull request #107 from arduino/per1234/rename
Rename tool to final name: arduino-lint
2 parents ece3ff1 + 373ab95 commit dcda76a

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

+2-2
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

+6-6
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.