mirror of
https://github.com/astral-sh/ruff
synced 2026-01-20 21:10:48 -05:00
[pydocstyle] Add setting to ignore missing documentation for*args and **kwargs parameters (D417) (#15210)
Co-authored-by: Micha Reiser <micha@reiser.io>
This commit is contained in:
7
ruff.schema.json
generated
7
ruff.schema.json
generated
@@ -2549,6 +2549,13 @@
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"ignore-var-parameters": {
|
||||
"description": "If set to `true`, ignore missing documentation for `*args` and `**kwargs` parameters.",
|
||||
"type": [
|
||||
"boolean",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"property-decorators": {
|
||||
"description": "A list of decorators that, when applied to a method, indicate that the method should be treated as a property (in addition to the builtin `@property` and standard-library `@functools.cached_property`).\n\nFor example, Ruff will expect that any method decorated by a decorator in this list can use a non-imperative summary line.",
|
||||
"type": [
|
||||
|
||||
Reference in New Issue
Block a user