File tree Expand file tree Collapse file tree 2 files changed +19
-16
lines changed
Expand file tree Collapse file tree 2 files changed +19
-16
lines changed Original file line number Diff line number Diff line change 1- /* cache
1+ /* cache /
22/.coverage
3- /.eggs
4- /.tox
3+ /.eggs /
4+ /.idea /
5+ /.tox /
6+ /.venv /
7+ /.vscode /
58/build /
6- /pip-wheel-metadata /
79/dist /
810/docs /api /
911/frontend /coverage /
10- /src /fava /static /*
11- ! /src /fava /static /favicon.ico
12+ /frontend /node_modules /
13+ /htmlcov /
14+ /src /fava.egg-info /
15+ /src /fava /static /* .css
16+ /src /fava /static /* .js
17+ /src /fava /static /* .map
18+ /src /fava /static /* .wasm
19+ /src /fava /static /* .woff2
1220/src /fava /translations /messages.pot
13- /src /fava.egg-info
14- /htmlcov
15- /venv
16- /.venv
17-
18- /.idea /
19- /.vscode /
21+ /src /fava /translations /** /messages.mo
22+ /venv /
2023
21- * .mo
2224* .pyc
2325* .so
2426.DS_Store
2527.env
26- TODO
2728__pycache__
28- node_modules
2929npm-debug.log
Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ dev: .venv
2424clean : mostlyclean
2525 find src/fava/static ! -name ' favicon.ico' -type f -exec rm -f {} +
2626 find src/fava/translations -name ' *.mo' -delete
27+ rm -rf src/fava.egg-info
28+ rm -rf src/fava/translations/messages.pot
2729
2830# Remove node_modules, caches, .tox, etc.
2931.PHONY : mostlyclean
@@ -34,6 +36,7 @@ mostlyclean:
3436 rm -rf .venv
3537 rm -rf build
3638 rm -rf dist
39+ rm -rf docs/api
3740 rm -rf htmlcov
3841 rm -rf frontend/node_modules
3942 find . -type f -name ' *.py[c0]' -delete
You can’t perform that action at this time.
0 commit comments