This commit is contained in:
innovaker 2023-09-28 10:18:03 +00:00 committed by GitHub
commit edfc5ae0ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 3291 additions and 0 deletions

14
.github/workflows/commitlint.yml vendored Normal file
View file

@ -0,0 +1,14 @@
name: Lint Commit Messages
on:
push:
pull_request:
jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: wagoid/commitlint-github-action@v2

1
.gitignore vendored
View file

@ -5,5 +5,6 @@
/zephyr /zephyr
/zmk-config /zmk-config
/build /build
/node_modules
*.DS_Store *.DS_Store
__pycache__ __pycache__

3266
package-lock.json generated Normal file

File diff suppressed because it is too large Load diff

10
package.json Normal file
View file

@ -0,0 +1,10 @@
{
"name": "zmk",
"version": "0.0.0",
"private": true,
"scripts": {},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0"
}
}