Enable bad-docstring-quotes pylint rule for core (#84100)

* Enable bad-docstring-quotes pylint rule for core

* Ignore previously bulk update in git blame
This commit is contained in:
Matt Clay
2024-10-09 14:57:05 -07:00
committed by GitHub
parent a0495fc314
commit 56bab1d097
2 changed files with 6 additions and 0 deletions

View File

@@ -2,3 +2,5 @@
# Bulk PowerShell sanity fixes
6def4a3180fe03981ba64c6d8db28fed3bb39c0c
716631189cb5a3f66b3add98f39e64e98bc17bf7
# Bulk update of strings from triple single quotes to triple double quotes
a0495fc31497798a7a833ba7406a9729e1528dd8

View File

@@ -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,