diff options
author | Ryan Petrello <rpetrell@redhat.com> | 2021-03-23 14:25:54 +0100 |
---|---|---|
committer | Ryan Petrello <rpetrell@redhat.com> | 2021-03-23 14:40:00 +0100 |
commit | 7200cbc94a816bb46bb10aaa316830f089222b1a (patch) | |
tree | 5546198c9b413e7abdad92f595254658b5530ac8 /pyproject.toml | |
parent | move code linting to a stricter pep8-esque auto-formatting tool, black (diff) | |
download | awx-7200cbc94a816bb46bb10aaa316830f089222b1a.tar.xz awx-7200cbc94a816bb46bb10aaa316830f089222b1a.zip |
move black CLI arguments into a pyproject.toml
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000000..3496e7ac91 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,4 @@ +[tool.black] +line-length = 160 +fast = true +skip-string-normalization = true |