Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/add gitignore, pr template - DO NOT MERGE #38

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
6 changes: 6 additions & 0 deletions .github/pr_template.yml
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?
21 changes: 21 additions & 0 deletions .github/workflows/yaml_lint.yml
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
5 changes: 5 additions & 0 deletions .gitignore
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
11 changes: 11 additions & 0 deletions .yamllint.yaml
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
Binary file added Hardware/.DS_Store
Binary file not shown.
Binary file added Hardware/Connector Board/.DS_Store
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading