Skip to content

Commit

Permalink
Merge remote-tracking branch 'bulletmark/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
swissiety committed Oct 26, 2022
2 parents 64b1025 + 71f3787 commit 08b79ea
Show file tree
Hide file tree
Showing 15 changed files with 1,937 additions and 447 deletions.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[flake8]
ignore = E126,E127,E128,E302,E305,E401
max-line-length = 80
max-complexity = 30
max-complexity = 36
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
README.html
.idea/
.vscode/
README.html
*.pyc
__pycache__
*~
16 changes: 6 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,8 @@
# General Public License at <http://www.gnu.org/licenses/> for more
# details.

DOC = README.md
SHELLCHECK_OPTS = -eSC2053,SC2064,SC2086,SC1117,SC2162,SC2181,SC2034,SC1090,SC2115

DOCOUT = $(DOC:.md=.html)

all:
@echo "Type sudo make install|uninstall"

Expand All @@ -27,13 +24,12 @@ uninstall:
@./libinput-gestures-setup -d "$(DESTDIR)" uninstall

check:
flake8 libinput-gestures
shellcheck $(SHELLCHECK_OPTS) libinput-gestures-setup list-version-hashes

doc: $(DOCOUT)
flake8 libinput-gestures internal internal-test
shellcheck $(SHELLCHECK_OPTS) libinput-gestures-setup list-version-hashes libinput-dummy
vermin --no-tips -i libinput-gestures internal internal-test

$(DOCOUT): $(DOC)
markdown $< >$@
test:
@./internal-test

clean:
rm -rf $(DOCOUT)
rm -rf __pycache__
Loading

0 comments on commit 08b79ea

Please sign in to comment.