.gitignore 1.6 KB

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