.gitignore 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /build
  2. /src
  3. __pycache__/
  4. *.py[co]
  5. pkg/arch/*.tar.xz
  6. *.sw[a-p]
  7. doc/_build
  8. doc/doc-archive.tar.gz
  9. dist
  10. MANIFEST
  11. *~
  12. *#
  13. *.wpr
  14. *.wpu
  15. *.DS_Store
  16. .pytest_cache
  17. Pipfile.lock
  18. .mypy_cache/*
  19. # virtualenv
  20. # - ignores directories of a virtualenv when you create it right on
  21. # top of salt such as
  22. # - /some/path$ git clone https://github.com/thatch45/salt.git
  23. # - /some/path$ virtualenv --python=/usr/bin/python2.6 salt
  24. /env/
  25. /bin/
  26. /etc/
  27. /include/
  28. /lib/
  29. /lib64/
  30. /local/
  31. /pip/
  32. /share/
  33. /tests/integration/tmp/
  34. /tests/cachedir/
  35. /tests/unit/templates/roots/
  36. /var/
  37. # setuptools stuff
  38. *.egg-info
  39. # code coverage outputs genereated by coverage.py
  40. .coverage
  41. .coverage.*
  42. coverage.xml
  43. htmlcov/
  44. # IDE files
  45. /.settings
  46. /.project
  47. /.pydevproject
  48. /.idea
  49. /.ropeproject
  50. .ropeproject
  51. *_flymake.py
  52. /*.iml
  53. *.sublime-project
  54. *.sublime-workspace
  55. # ignore ctags file
  56. tags
  57. # ignore Vagrant file
  58. **/Vagrantfile
  59. **/.vagrant
  60. # Compiled translation files should not be VCS'ed
  61. # locale/zh_CN/LC_MESSAGES/topics/virt/nic.mo
  62. *.mo
  63. .doctrees
  64. # Allow a user to set their own _version.py for testing
  65. _version.py
  66. # Ignore auto generated _syspaths.py file
  67. _syspaths.py
  68. # Ignore grains file written out during tests
  69. tests/integration/files/conf/grains
  70. /salt/_syspaths.py
  71. # ignore the local root
  72. /root/**
  73. # Ignore file cache created by jinja tests
  74. tests/unit/templates/roots
  75. # Pycharm
  76. .idea
  77. # VS Code
  78. .vscode
  79. # Ignore the log directory created by tests
  80. /logs
  81. tests/integration/cloud/providers/logs
  82. # Private keys from the integration tests
  83. tests/integration/cloud/providers/pki/minions
  84. /helpers/
  85. # Ignore tox virtualenvs
  86. /.tox/
  87. # Ignore nox virtualenvs
  88. /.nox/
  89. # Ignore pyenv files
  90. .python-version
  91. # Kitchen tests files
  92. .kitchen.local.yml
  93. kitchen.local.yml
  94. .kitchen/
  95. .bundle/
  96. Gemfile.lock
  97. /artifacts/
  98. requirements/static/py*/*.log