Merge 78fe795116
into 8abc449cc2
This commit is contained in:
commit
edfc5ae0ae
4 changed files with 3291 additions and 0 deletions
14
.github/workflows/commitlint.yml
vendored
Normal file
14
.github/workflows/commitlint.yml
vendored
Normal 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
1
.gitignore
vendored
|
@ -5,5 +5,6 @@
|
|||
/zephyr
|
||||
/zmk-config
|
||||
/build
|
||||
/node_modules
|
||||
*.DS_Store
|
||||
__pycache__
|
3266
package-lock.json
generated
Normal file
3266
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load diff
10
package.json
Normal file
10
package.json
Normal 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"
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue