From d353e5bf6e094f1a16f414598c46ed7595653c77 Mon Sep 17 00:00:00 2001 From: miruka Date: Wed, 17 Apr 2019 13:43:46 -0400 Subject: [PATCH] Ignore .jsc files (Qt JS cache) --- .gitignore | 1 + Makefile | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 69b04516..b8d40a74 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ dist *.egg-info *.pyc *.qmlc +*.jsc .pylintrc diff --git a/Makefile b/Makefile index 46408c3e..7a677f7f 100644 --- a/Makefile +++ b/Makefile @@ -22,6 +22,7 @@ clean: find . -name '__pycache__' -exec rm -Rfv {} + find . -name '*.pyc' -exec rm -Rfv {} + find . -name '*.qmlc' -exec rm -Rfv {} + + find . -name '*.jsc' -exec rm -Rfv {} + find . -name '*.egg-info' -exec rm -Rfv {} + rm -Rfv build dist