.gitignore 737 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /target
  2. /bin
  3. /ca
  4. .vscode
  5. .idea
  6. /crates/adblocker
  7. /target
  8. # Byte-compiled / optimized / DLL files
  9. __pycache__/
  10. .pytest_cache/
  11. *.py[cod]
  12. # C extensions
  13. *.so
  14. # Distribution / packaging
  15. .Python
  16. .venv/
  17. env/
  18. bin/
  19. build/
  20. develop-eggs/
  21. dist/
  22. eggs/
  23. lib/
  24. lib64/
  25. parts/
  26. sdist/
  27. var/
  28. include/
  29. man/
  30. venv/
  31. *.egg-info/
  32. .installed.cfg
  33. *.egg
  34. # Installer logs
  35. pip-log.txt
  36. pip-delete-this-directory.txt
  37. pip-selfcheck.json
  38. # Unit test / coverage reports
  39. htmlcov/
  40. .tox/
  41. .coverage
  42. .cache
  43. nosetests.xml
  44. coverage.xml
  45. # Translations
  46. *.mo
  47. # Mr Developer
  48. .mr.developer.cfg
  49. .project
  50. .pydevproject
  51. # Rope
  52. .ropeproject
  53. # Django stuff:
  54. *.log
  55. *.pot
  56. .DS_Store
  57. # Sphinx documentation
  58. docs/_build/
  59. # PyCharm
  60. .idea/
  61. # VSCode
  62. .vscode/
  63. # Pyenv
  64. .python-version