diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2021-06-22 20:21:30 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-22 20:21:30 +0000 |
| commit | 056550d523ddf4e06821957e13623fc322cf4675 (patch) | |
| tree | 3654f7c258fd79a38249b3769a9d373c46f71ef0 | |
| parent | 98d1661f723289504cf814bca23a34c04b94c789 (diff) | |
| parent | 7ef6ffa80370010879409193fa46dad306d94452 (diff) | |
Merge pull request #169 from return42/tidy-ignorelists
[fix] tidy up ignore lists .gitignore & .dockerignore
| -rw-r--r-- | .dockerignore | 24 | ||||
| -rw-r--r-- | .gitignore | 21 |
2 files changed, 11 insertions, 34 deletions
diff --git a/.dockerignore b/.dockerignore index 3d158c95d..6fcbd368b 100644 --- a/.dockerignore +++ b/.dockerignore @@ -4,9 +4,6 @@ */*/*/*~ */*/*/*/*~ -# -local/ - # Git .git .gitignore @@ -26,19 +23,6 @@ __pycache__/ */*/*.py[cod] */*/*/*.py[cod] -# to sync with .gitignore -.coverage -coverage/ -.installed.cfg -engines.cfg -env -searx-ve -robot_log.html -robot_output.xml -robot_report.html -test_basic/ -setup.cfg - # node_modules node_modules/ */node_modules/ @@ -48,9 +32,13 @@ node_modules/ .tx/ -# +# to sync with .gitignore +geckodriver.log +.coverage +coverage/ +cache/ build/ dist/ local/ gh-pages/ -searx.egg-info/ +*.egg-info/ diff --git a/.gitignore b/.gitignore index b1286ea66..fd152a347 100644 --- a/.gitignore +++ b/.gitignore @@ -1,28 +1,17 @@ # to sync with .dockerignore -.coverage -coverage/ -cache/ -.installed.cfg -engines.cfg -env -searx-ve -robot_log.html -robot_output.xml -robot_report.html -test_basic/ -setup.cfg *.pyc */*.pyc *~ *.swp +geckodriver.log -/node_modules - -.tx/ +.coverage +coverage/ +cache/ build/ dist/ local/ gh-pages/ -searx.egg-info/ +*.egg-info/ |