summaryrefslogtreecommitdiffstats
path: root/ansible_collections/community/postgresql/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'ansible_collections/community/postgresql/tox.ini')
-rw-r--r--ansible_collections/community/postgresql/tox.ini14
1 files changed, 14 insertions, 0 deletions
diff --git a/ansible_collections/community/postgresql/tox.ini b/ansible_collections/community/postgresql/tox.ini
new file mode 100644
index 000000000..48a491cd5
--- /dev/null
+++ b/ansible_collections/community/postgresql/tox.ini
@@ -0,0 +1,14 @@
+[tox]
+envlist = lint
+isolated_build = true
+[testenv:lint]
+skip_install = true
+commands =
+ flake8 .
+ codespell
+deps =
+ flake8
+ codespell
+
+[pycodestyle]
+ignore = E226,E302,E71