diff options
author | Zach White <skullydazed@gmail.com> | 2021-01-09 13:34:14 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-09 13:34:14 -0800 |
commit | 962bc8d9dd413690dbeadeaac971a5389697210f (patch) | |
tree | 02e7c5ebe87f466103901d72740fbf25c9d19a30 /setup.cfg | |
parent | c550047ba68bd633d35b10d545ff240cf1fc9786 (diff) | |
download | qmk_firmware-962bc8d9dd413690dbeadeaac971a5389697210f.tar.gz qmk_firmware-962bc8d9dd413690dbeadeaac971a5389697210f.zip |
Use the schema to eliminate custom code (#11108)
* use the schema to eliminate custom code
* Update docs/reference_info_json.md
Co-authored-by: Ryan <fauxpark@gmail.com>
* make flake8 happy
* bugfix
* do not overwrite make vars from json
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -3,6 +3,8 @@ | |||
3 | ignore = | 3 | ignore = |
4 | # QMK is ok with long lines. | 4 | # QMK is ok with long lines. |
5 | E501 | 5 | E501 |
6 | # Conflicts with our yapf config | ||
7 | E231 | ||
6 | per_file_ignores = | 8 | per_file_ignores = |
7 | **/__init__.py:F401 | 9 | **/__init__.py:F401 |
8 | 10 | ||