diff options
author | QMK Bot <hello@qmk.fm> | 2020-12-10 17:02:28 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2020-12-10 17:02:28 +0000 |
commit | f77f715aa2215ae08920f8c2929c3b181657456d (patch) | |
tree | d018f8ed0cfcce14c7b7f30e8a1243cc3a8af262 /lib | |
parent | 15373c8367df04248cdf1f1eb80d08109ca62b85 (diff) | |
parent | 6c4b6531fe8fed46bec54fae993a1bab8246dd7d (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'lib')
-rw-r--r-- | lib/python/qmk/cli/__init__.py | 1 | ||||
-rw-r--r-- | lib/python/qmk/cli/fileformat.py | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/lib/python/qmk/cli/__init__.py b/lib/python/qmk/cli/__init__.py index 10536bb230..372c40921a 100644 --- a/lib/python/qmk/cli/__init__.py +++ b/lib/python/qmk/cli/__init__.py @@ -14,6 +14,7 @@ from . import compile from . import config from . import docs from . import doctor +from . import fileformat from . import flash from . import generate from . import hello diff --git a/lib/python/qmk/cli/fileformat.py b/lib/python/qmk/cli/fileformat.py new file mode 100644 index 0000000000..502a3b7b1f --- /dev/null +++ b/lib/python/qmk/cli/fileformat.py @@ -0,0 +1,13 @@ +"""Format files according to QMK's style. +""" +from milc import cli + +import subprocess + + +@cli.subcommand("Format files according to QMK's style.", hidden=True) +def fileformat(cli): + """Run several general formatting commands. + """ + dos2unix = subprocess.run(['bash', '-c', 'dos2unix **']) + return dos2unix.returncode |