-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from jmuelbert/resolve_wf_issues
Resolve Workflow Issues
- Loading branch information
Showing
67 changed files
with
1,165 additions
and
3,599 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,5 @@ | ||
--- | ||
# You can see all available properties here: https://github.com/bridgecrewio/checkov#configuration-using-a-config-file | ||
quiet: true | ||
skip-check: | ||
- CKV_DOCKER_2 |
Large diffs are not rendered by default.
Oops, something went wrong.
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,3 @@ | ||
{ | ||
"Globs": ["**/.git/**", "**/megalinter-reports/**"] | ||
} |
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,18 @@ | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.{py}] | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
[*.{yml,yaml,toml,json}] | ||
indent_style = space | ||
indent_size = 2 | ||
|
||
[*.{md,mdx,adoc}] | ||
insert_final_newline = false |
Oops, something went wrong.