-
Notifications
You must be signed in to change notification settings - Fork 44
/
.ansible-lint
47 lines (47 loc) · 1.16 KB
/
.ansible-lint
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
################################################################################
# Copyright (c) IBM Corporation 2024
################################################################################
# For additonal doc, see https://ansible.readthedocs.io/projects/lint/configuring/
exclude_paths:
- .tar.gz
- __pycache__/
- .ansible-lint
- .cache/
- .DS_Store
- .git/
- .github/
- .gitignore
- .python-version
- .pytest_cache/
- .vscode/
- Jenkinsfile
- ac
- ansible.cfg
- changelogs/
- collections/
- docs/
- importer_result.json
- scripts/
- test_config.yml
- tests/*.ini
- tests/*.py
- tests/.pytest_cache
- tests/__pycache__
- tests/functional
- tests/helpers
- tests/requirements.txt
- tests/unit
- tests/sanity/ignore-2.9.txt
- tests/sanity/ignore-2.10.txt
- tests/sanity/ignore-2.11.txt
- tests/sanity/ignore-2.12.txt
- tests/sanity/ignore-2.13.txt
- tests/sanity/ignore-2.14.txt
- venv*
parseable: true
quiet: false
use_default_rules: true
verbosity: 1
# Offline mode disables installation of requirements.yml and schema refreshing often
# found in project_root/collections/requirements.yml.
offline: true