diff options
author | Matt Clay <matt@mystile.com> | 2024-10-09 23:57:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-09 23:57:05 +0200 |
commit | 56bab1d097a7b3556dd0e68a1e44a57d405e6e5e (patch) | |
tree | 88422f562a89dc7bec77c625b52cf53adc01114f | |
parent | Update triple single quotes to triple double quotes (#84099) (diff) | |
download | ansible-56bab1d097a7b3556dd0e68a1e44a57d405e6e5e.tar.xz ansible-56bab1d097a7b3556dd0e68a1e44a57d405e6e5e.zip |
Enable bad-docstring-quotes pylint rule for core (#84100)
* Enable bad-docstring-quotes pylint rule for core
* Ignore previously bulk update in git blame
-rw-r--r-- | .git-blame-ignore-revs | 2 | ||||
-rw-r--r-- | test/lib/ansible_test/_util/controller/sanity/pylint/config/default.cfg | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs index 24f4438fbb..72ee0f901d 100644 --- a/.git-blame-ignore-revs +++ b/.git-blame-ignore-revs @@ -2,3 +2,5 @@ # Bulk PowerShell sanity fixes 6def4a3180fe03981ba64c6d8db28fed3bb39c0c 716631189cb5a3f66b3add98f39e64e98bc17bf7 +# Bulk update of strings from triple single quotes to triple double quotes +a0495fc31497798a7a833ba7406a9729e1528dd8 diff --git a/test/lib/ansible_test/_util/controller/sanity/pylint/config/default.cfg b/test/lib/ansible_test/_util/controller/sanity/pylint/config/default.cfg index f0ee7a9c4f..9bf1de29ee 100644 --- a/test/lib/ansible_test/_util/controller/sanity/pylint/config/default.cfg +++ b/test/lib/ansible_test/_util/controller/sanity/pylint/config/default.cfg @@ -2,7 +2,11 @@ max-line-length=160 +load-plugins= + pylint.extensions.docstyle, + disable= + docstring-first-line-empty, import-outside-toplevel, # common pattern in ansible related code abstract-method, access-member-before-definition, |