Skip to content
This repository was archived by the owner on Feb 28, 2024. It is now read-only.

Commit 85e59c7

Browse files
authored
Reduce Arduino Lint compliance level to "specification"
Linting the library in "strict" compliance mode fails due to the `name` value exceeding the recommended maximum of 16 characters. It is not possible to change the name, so this is not something that can be fixed. The expected error might mask real problems that cause other rule violations in the future. So the best thing is to reduce the compliance level to "specification" in which the library name length rule violation only results in a warning.
1 parent eba975c commit 85e59c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: .github/workflows/check-arduino.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Arduino Lint
2222
uses: arduino/arduino-lint-action@v1
2323
with:
24-
compliance: strict
24+
compliance: specification
2525
library-manager: update
2626
# Always use this setting for official repositories. Remove for 3rd party projects.
2727
official: true

0 commit comments

Comments
 (0)