90 lines
1.6 KiB
Text
90 lines
1.6 KiB
Text
# build products...
|
|
*.py[co]
|
|
build
|
|
AUTHORS.TXT
|
|
# Emacs backup files...
|
|
*~
|
|
.\#*
|
|
# RPM stuff...
|
|
MANIFEST
|
|
dist
|
|
rpm-build
|
|
# Eclipse/PyDev stuff...
|
|
.project
|
|
.pydevproject
|
|
# PyCharm stuff...
|
|
.idea
|
|
#IntelliJ IDEA stuff..
|
|
*.iml
|
|
# Mac OS X stuff...
|
|
.DS_Store
|
|
# manpage build stuff...
|
|
docs/man/man1/ansible.1
|
|
docs/man/man1/ansible-doc.1
|
|
docs/man/man1/ansible-galaxy.1
|
|
docs/man/man1/ansible-playbook.1
|
|
docs/man/man1/ansible-pull.1
|
|
docs/man/man1/ansible-vault.1
|
|
docs/man/man3/*
|
|
# Sublime stuff
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
# docsite stuff...
|
|
docsite/rst/modules_by_category.rst
|
|
docsite/rst/playbooks_directives.rst
|
|
docsite/rst/list_of_*.rst
|
|
docsite/rst/*_module.rst
|
|
docsite/*.html
|
|
docsite/_static/*.gif
|
|
docsite/_static/*.png
|
|
docsite/_static/websupport.js
|
|
docsite/searchindex.js
|
|
docsite/htmlout
|
|
docs-api/rst/
|
|
docs-api/_build/
|
|
# deb building stuff...
|
|
/debian/
|
|
deb-build
|
|
# Vim swap files
|
|
*.swp
|
|
*.swo
|
|
credentials.yml
|
|
# test output
|
|
*.retry
|
|
*.out
|
|
.tox
|
|
.cache
|
|
results.xml
|
|
coverage.xml
|
|
/test/units/cover-html
|
|
# Development
|
|
/test/develop
|
|
venv
|
|
Vagrantfile
|
|
.vagrant
|
|
ansible.egg-info/
|
|
/shippable/
|
|
# Release directory
|
|
packaging/release/ansible_release
|
|
/.cache/
|
|
/test/results/coverage/coverage*
|
|
/test/results/reports/coverage.xml
|
|
/test/results/reports/coverage/
|
|
/test/results/junit/*.xml
|
|
/test/results/logs/*.log
|
|
/test/integration/inventory.remote
|
|
/test/integration/inventory.networking
|
|
/test/integration/inventory.winrm
|
|
# old submodule dirs
|
|
lib/ansible/modules/core
|
|
lib/ansible/modules/extras
|
|
# python 'rope' stuff
|
|
.ropeproject
|
|
# local 'ack' config files
|
|
.ackrc
|
|
# default 'coverage html' results
|
|
htmlcov/
|
|
# default 'coverage' tool data
|
|
.coverage
|
|
# ansible-test coverage results
|
|
test/units/.coverage.*
|