-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit '81d88a17eb785bf42311515b4e0a4529810ac1bd' as 'zsa_firmw…
…are'
- Loading branch information
Showing
2,554 changed files
with
367,009 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,30 @@ | ||
--- | ||
BasedOnStyle: Google | ||
AlignAfterOpenBracket: Align | ||
AlignConsecutiveAssignments: 'true' | ||
AlignConsecutiveDeclarations: 'true' | ||
AlignOperands: 'true' | ||
AllowAllParametersOfDeclarationOnNextLine: 'false' | ||
AllowShortCaseLabelsOnASingleLine: 'false' | ||
AllowShortFunctionsOnASingleLine: Empty | ||
AllowShortLoopsOnASingleLine: 'false' | ||
AlwaysBreakAfterDefinitionReturnType: None | ||
AlwaysBreakAfterReturnType: None | ||
AlwaysBreakBeforeMultilineStrings: 'false' | ||
BinPackArguments: 'true' | ||
BinPackParameters: 'true' | ||
ColumnLimit: '1000' | ||
IndentCaseLabels: 'true' | ||
IndentPPDirectives: AfterHash | ||
IndentWidth: '4' | ||
MaxEmptyLinesToKeep: '1' | ||
PointerAlignment: Right | ||
SortIncludes: 'false' | ||
SpaceBeforeAssignmentOperators: 'true' | ||
SpaceBeforeParens: ControlStatements | ||
SpaceInEmptyParentheses: 'false' | ||
SpacesBeforeTrailingComments: 1 | ||
TabWidth: '4' | ||
UseTab: Never | ||
|
||
... |
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,4 @@ | ||
CompileFlags: | ||
Add: [-Wno-unknown-attributes, -Wno-maybe-uninitialized, -Wno-unknown-warning-option] | ||
Remove: [-W*, -mmcu=*, -mcpu=*, -mfpu=*, -mfloat-abi=*, -mno-unaligned-access, -mno-thumb-interwork, -mcall-prologues] | ||
Compiler: clang |
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,42 @@ | ||
# EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
end_of_line = lf | ||
indent_style = space | ||
indent_size = 4 | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[{*.yaml,*.yml}] # To match GitHub Actions formatting | ||
indent_size = 2 | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[{Makefile,*.mk}] | ||
indent_style = tab | ||
|
||
# Don't override anything in `lib/`... | ||
[lib/**] | ||
indent_style = unset | ||
indent_size = unset | ||
tab_width = unset | ||
end_of_line = unset | ||
charset = unset | ||
spelling_language = unset | ||
trim_trailing_whitespace = unset | ||
insert_final_newline = unset | ||
|
||
# ...except QMK's `lib/python`. | ||
[{*.py,lib/python/**.py}] | ||
end_of_line = lf | ||
indent_style = space | ||
indent_size = 4 | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
max_line_length = 200 |
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,96 @@ | ||
# auto for anything unspecified | ||
* text=auto | ||
|
||
# sources | ||
*.c text eol=lf | ||
*.cc text eol=lf | ||
*.cxx text eol=lf | ||
*.cpp text eol=lf | ||
*.c++ text eol=lf | ||
*.hpp text eol=lf | ||
*.h text eol=lf | ||
*.h++ text eol=lf | ||
*.hh text eol=lf | ||
*.bat text eol=crlf | ||
*.cmd text eol=crlf | ||
*.coffee text eol=lf | ||
*.css text eol=lf | ||
*.htm text eol=lf | ||
*.html text eol=lf | ||
*.inc text eol=lf | ||
*.ini text eol=crlf | ||
*.js text eol=lf | ||
*.jsx text eol=lf | ||
*.json text eol=lf | ||
*.less text eol=lf | ||
*.php text eol=lf | ||
*.pl text eol=lf | ||
*.py text eol=lf | ||
*.rb text eol=lf | ||
*.sass text eol=lf | ||
*.scm text eol=lf | ||
*.scss text eol=lf | ||
*.sh text eol=lf | ||
*.sql text eol=lf | ||
*.styl text eol=lf | ||
*.ts text eol=lf | ||
*.xml text eol=lf | ||
*.xhtml text eol=lf | ||
|
||
# make files (need to always use lf for compatibility with Windows 10 bash) | ||
Makefile eol=lf | ||
*.mk eol=lf | ||
|
||
# make files (need to always use lf for compatibility with Windows 10 bash) | ||
*.sh eol=lf | ||
|
||
# documentation | ||
*.markdown text eol=lf | ||
*.md text eol=lf | ||
*.mdwn text eol=lf | ||
*.mdown text eol=lf | ||
*.mkd text eol=lf | ||
*.mkdn text eol=lf | ||
*.mdtxt text eol=lf | ||
*.mdtext text eol=lf | ||
*.txt text eol=lf | ||
AUTHORS text eol=lf | ||
CHANGELOG text eol=lf | ||
CHANGES text eol=lf | ||
CONTRIBUTING text eol=lf | ||
COPYING text eol=lf | ||
INSTALL text eol=lf | ||
license text eol=lf | ||
LICENSE text eol=lf | ||
NEWS text eol=lf | ||
readme text eol=lf | ||
*README* text eol=lf | ||
TODO text eol=lf | ||
|
||
GRAPHICS | ||
*.ai binary | ||
*.bmp binary | ||
*.eps binary | ||
*.gif binary | ||
*.ico binary | ||
*.jng binary | ||
*.jp2 binary | ||
*.jpg binary | ||
*.jpeg binary | ||
*.jpx binary | ||
*.jxr binary | ||
*.pdf binary | ||
*.png binary | ||
*.psb binary | ||
*.psd binary | ||
*.svg text eol=lf | ||
*.svgz binary | ||
*.tif binary | ||
*.tiff binary | ||
*.wbmp binary | ||
*.webp binary | ||
|
||
# hex files | ||
*.hex binary | ||
*.eep binary | ||
nix/sources.nix linguist-generated=true |
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,41 @@ | ||
name: Bug report | ||
description: Create a report to help us improve QMK Firmware. | ||
title: "[Bug] " | ||
labels: ["bug", "help wanted"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Provide a general summary of the bug in the title above. | ||
- type: textarea | ||
attributes: | ||
label: Describe the Bug | ||
description: A clear and concise description of what the bug is. | ||
- type: input | ||
attributes: | ||
label: Keyboard Used | ||
description: The name of the keyboard from the `make` or `qmk compile`/`qmk flash` commands, eg. `planck/rev6`. | ||
- type: input | ||
attributes: | ||
label: Link to product page (if applicable) | ||
- type: input | ||
attributes: | ||
label: Operating System | ||
- type: textarea | ||
attributes: | ||
label: qmk doctor Output | ||
description: Output from running the `qmk doctor` command. | ||
render: text | ||
- type: checkboxes | ||
attributes: | ||
label: Is AutoHotKey / Karabiner installed | ||
options: | ||
- label: AutoHotKey (Windows) | ||
- label: Karabiner (macOS) | ||
- type: input | ||
attributes: | ||
label: Other keyboard-related software installed | ||
- type: textarea | ||
attributes: | ||
label: Additional Context | ||
description: Add any other relevant information about the problem here. |
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,8 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: QMK Discord | ||
url: https://discord.gg/Uq7gcHh | ||
about: Ask questions, discuss issues and features. Chill. | ||
- name: OLKB Subreddit | ||
url: https://www.reddit.com/r/olkb | ||
about: All things OLKB and QMK. |
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,24 @@ | ||
name: Feature request | ||
description: Suggest a new feature or changes to existing features. | ||
title: "[Feature Request] " | ||
labels: ["enhancement", "help wanted"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Provide a general summary of the changes you want in the title above. | ||
Please refrain from asking maintainers to add support for specific keyboards -- it is unlikely they will have hardware available, and will not be able to help. | ||
Your best bet is to take the initiative, add support, then submit a PR yourself. | ||
- type: checkboxes | ||
attributes: | ||
label: Feature Request Type | ||
options: | ||
- label: Core functionality | ||
- label: Add-on hardware support (eg. audio, RGB, OLED screen, etc.) | ||
- label: Alteration (enhancement/optimization) of existing feature(s) | ||
- label: New behavior | ||
- type: textarea | ||
attributes: | ||
label: Description | ||
description: A few sentences describing what it is that you'd like to see in QMK. Additional information (such as links to spec sheets, licensing info, other related issues or PRs, etc) would be helpful. |
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,19 @@ | ||
name: Other issues | ||
description: Anything else that doesn't fall into the above categories. | ||
labels: ["help wanted", "question"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Provide a general summary of the changes you want in the title above. | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Please check [https://docs.qmk.fm/#/support](https://docs.qmk.fm/#/support) for additional resources first. If that doesn't answer your question, choose the bug report template instead, as that may be more appropriate. | ||
Please refrain from asking maintainers to add support for specific keyboards -- it is unlikely they will have hardware available, and will not be able to help. | ||
Your best bet is to take the initiative, add support, then submit a PR yourself. | ||
- type: textarea | ||
attributes: | ||
label: Issue Description | ||
description: Describe your issue in as much detail as possible. |
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 @@ | ||
--- | ||
name: Blank issue | ||
about: If you're 100% sure that you don't need one of the other issue templates, use | ||
this one instead. | ||
title: '' | ||
labels: help wanted, question | ||
assignees: '' | ||
|
||
--- | ||
|
||
|
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,35 @@ | ||
<!--- Provide a general summary of your changes in the title above. --> | ||
|
||
<!--- This template is entirely optional and can be removed, but is here to help both you and us. --> | ||
<!--- Anything on lines wrapped in comments like these will not show up in the final text. --> | ||
|
||
## Description | ||
|
||
<!--- Describe your changes in detail here. --> | ||
|
||
## Types of Changes | ||
|
||
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply. --> | ||
- [ ] Core | ||
- [ ] Bugfix | ||
- [ ] New feature | ||
- [ ] Enhancement/optimization | ||
- [ ] Keyboard (addition or update) | ||
- [ ] Keymap/layout/userspace (addition or update) | ||
- [ ] Documentation | ||
|
||
## Issues Fixed or Closed by This PR | ||
|
||
* | ||
|
||
## Checklist | ||
|
||
<!--- Go over all the following points, and put an `x` in all the boxes that apply. --> | ||
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> | ||
- [ ] My code follows the code style of this project: [**C**](https://docs.qmk.fm/#/coding_conventions_c), [**Python**](https://docs.qmk.fm/#/coding_conventions_python) | ||
- [ ] I have read the [**PR Checklist** document](https://docs.qmk.fm/#/pr_checklist) and have made the appropriate changes. | ||
- [ ] My change requires a change to the documentation. | ||
- [ ] I have updated the documentation accordingly. | ||
- [ ] I have read the [**CONTRIBUTING** document](https://docs.qmk.fm/#/contributing). | ||
- [ ] I have added tests to cover my changes. | ||
- [ ] I have tested the changes and verified that they work and don't break anything (as well as I can manage). |
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,9 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
labels: CI | ||
reviewers: | ||
- "qmk/collaborators" | ||
schedule: | ||
interval: "daily" |
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,46 @@ | ||
core: | ||
- quantum/**/* | ||
- tmk_core/**/* | ||
- drivers/**/* | ||
- tests/**/* | ||
- util/**/* | ||
- platforms/**/* | ||
- builddefs/**/* | ||
- Makefile | ||
- '*.mk' | ||
dependencies: | ||
- any: | ||
- 'lib/**/*' | ||
- '!lib/python/**/*' | ||
keyboard: | ||
- any: | ||
- 'keyboards/**/*' | ||
- '!keyboards/**/keymaps/**/*' | ||
keymap: | ||
- users/**/* | ||
- layouts/**/* | ||
- keyboards/**/keymaps/**/* | ||
via: | ||
- keyboards/**/keymaps/via/* | ||
cli: | ||
- requirements.txt | ||
- lib/python/**/* | ||
python: | ||
- '**/*.py' | ||
documentation: | ||
- docs/**/* | ||
translation: | ||
- docs/fr-fr/**/* | ||
- docs/es/**/* | ||
- docs/ja/**/* | ||
- docs/he-il/**/* | ||
- docs/pt-br/**/* | ||
- docs/zh-cn/**/* | ||
- docs/de/**/* | ||
- docs/ru-ru/**/* | ||
CI: | ||
- .github/**/* | ||
dd: | ||
- data/constants/**/* | ||
- data/mappings/**/* | ||
- data/schemas/**/* |
Oops, something went wrong.