-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve build pipeline and documentation text
- Use super-linter environment file to have better consistency between GitHub CI pipeline and the instructions in LINT.md - Use correct wording for ACAP applications - Add comments to linter configuration files Change-Id: I70890072c92123a3cd0a17fbb75bc8894921570e Signed-off-by: Joakim Roubert <joakimr@axis.com>
- Loading branch information
1 parent
66d83af
commit c888e8c
Showing
8 changed files
with
42 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
LINTER_RULES_PATH=/ | ||
VALIDATE_ALL_CODEBASE=true | ||
IGNORE_GITIGNORED_FILES=true | ||
VALIDATE_CLANG_FORMAT=true | ||
VALIDATE_DOCKERFILE_HADOLINT=true | ||
VALIDATE_JSON=true | ||
VALIDATE_MARKDOWN=true | ||
VALIDATE_YAML=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
--- | ||
# Line length | ||
MD013: | ||
line_length: 100 | ||
# First line in a file should be a top-level heading | ||
MD041: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,6 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:base" | ||
], | ||
"labels": ["dependencies"], | ||
"packageRules": [ | ||
{ | ||
"updateTypes": ["minor", "patch", "pin", "digest"], | ||
"automerge": true | ||
} | ||
], | ||
"rebaseWhen": "behind-base-branch", | ||
"vulnerabilityAlerts": { | ||
"labels": ["security"] | ||
}, | ||
"stabilityDays": 3, | ||
"prCreation": "not-pending", | ||
"dependencyDashboard": false | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:recommended" | ||
] | ||
} |