Browse Source

[fix] tidy up ignore lists .gitignore & .dockerignore

Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Markus Heiser 3 years ago
parent
commit
7ef6ffa803
2 changed files with 11 additions and 34 deletions
  1. 6 18
      .dockerignore
  2. 5 16
      .gitignore

+ 6 - 18
.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/

+ 5 - 16
.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/