Skip to content

Commit

Permalink
#51 Github action linter added (#52)
Browse files Browse the repository at this point in the history
* #51 Github action linter added
  • Loading branch information
patrickvorgers authored Aug 26, 2024
1 parent 3add909 commit cd9ac2a
Show file tree
Hide file tree
Showing 30 changed files with 3,070 additions and 1,434 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Super-Linter

on: push

jobs:
super-lint:
name: Lint code base
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Run Super-Linter
uses: github/super-linter@latest
env:
DEFAULT_BRANCH: main
VALIDATE_ALL_CODEBASE: true
VALIDATE_SQL: false
VALIDATE_SQL_SQLFLUFF: false
FILTER_REGEX_EXCLUDE: .*\.sql$|.*\.md$
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
18 changes: 9 additions & 9 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,20 @@ Hopefully, together with the community, the number of supported energy providers

Please share scripts or how-to guides if you have built an integration with a new energy provider. Your name will be added to the list below as a contributor.

## Project technical leads:
## Project technical leads

* Patrick Vorgers (the Netherlands)

## All other contributors:
## All other contributors

* Nick de Wijer (https://github.com/ndewijer)
* Initial implementation: GreenChoice
* Sample files for: SolarEdge
* Initial implementation: GreenChoice
* Sample files for: SolarEdge
* vGelder (https://github.com/vGelder)
* Sample files for: Oxxio
* Sample files for: Liander
* Sample files for: Engie
* Sample files for: Oxxio
* Sample files for: Liander
* Sample files for: Engie
* Jaap P. (https://github.com/AJediIAm)
* Implementation: P1Mon (ZTATZ)
* Implementation: P1Mon (ZTATZ)
* Minze Tolsman (https://github.com/miezie)
* Implementation: VanOns
* Implementation: VanOns
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ Contributing to this project should be as easy and transparent as possible, whet
- Submitting a fix
- Proposing new features

## Github is used for everything
## GitHub is used for everything

Github is used to host code, to track issues and feature requests, as well as accept pull requests.
GitHub is used to host code, to track issues and feature requests, as well as accept pull requests.

Pull requests are the best way to propose changes to the codebase.

1. Fork the repo and create your branch from `main`.
1. Fork the repository and create your branch from `main`.
2. If you've changed something, update the documentation.
3. Make sure your code lints (using `scripts/lint`).
4. Test you contribution.
Expand Down
Loading

0 comments on commit cd9ac2a

Please sign in to comment.