Ignore .jsc files (Qt JS cache)

This commit is contained in:
miruka 2019-04-17 13:43:46 -04:00
parent a59c0d1572
commit d353e5bf6e
2 changed files with 2 additions and 0 deletions

1
.gitignore vendored
View File

@ -5,6 +5,7 @@ dist
*.egg-info
*.pyc
*.qmlc
*.jsc
.pylintrc

View File

@ -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