.gitignore 1.7 KB

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