-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: adding .gitignore, pr template, yaml lint
- Loading branch information
1 parent
be5da6a
commit 5a6087c
Showing
4 changed files
with
43 additions
and
0 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,6 @@ | ||
### Description | ||
Provide the reason of this PR. | ||
|
||
- [ ] Did you squash your commits? `git reset --soft HEAD~3` where 3 is the number of commits you want to squash. | ||
- [ ] Did you sign the CLA? https://gist.github.com/jamespilgrim/e6996a438adc0919ebbe70561efbb600#file-verdant-contributor-license-agreement-md. | ||
- [ ] Did you run build locally and ran successfully? |
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,21 @@ | ||
--- | ||
name: YAML Lint | ||
|
||
on: | ||
push: | ||
paths: | ||
- '.github/workflows/**.yaml' | ||
- '.github/workflows/**.yml' | ||
- '!docs/**' | ||
|
||
jobs: | ||
golangci: | ||
name: YAML Lint | ||
runs-on: [ubuntu-latest] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: yaml-lint | ||
uses: ibiqlik/action-yamllint@v3 | ||
with: | ||
file_or_dir: .github/workflows | ||
config_file: .yamllint.yaml |
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 @@ | ||
# Visual Code | ||
# Ignoring root .vscode folder. | ||
.vscode/ | ||
# Ignoring ~/build inside LMSourceCode | ||
/Software/LMSourceCode/ImageProcessing/build |
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,11 @@ | ||
--- | ||
extends: default | ||
|
||
rules: | ||
line-length: disable | ||
new-lines: | ||
type: unix | ||
new-line-at-end-of-file: | ||
level: warning | ||
trailing-spaces: | ||
level: warning |