.gitignore 1.6 KB

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