mirror of
https://github.com/astral-sh/ruff.git
synced 2025-12-23 09:19:39 +00:00
update other snapshots
This commit is contained in:
parent
8fb983921b
commit
fd69b6c3dc
11 changed files with 19 additions and 0 deletions
|
|
@ -261,6 +261,7 @@ linter.pylint.max_locals = 15
|
|||
linter.pylint.max_nested_blocks = 5
|
||||
linter.pyupgrade.keep_runtime_typing = false
|
||||
linter.ruff.parenthesize_tuple_in_subscript = false
|
||||
linter.ruff.strictly_empty_init_modules = false
|
||||
|
||||
# Formatter Settings
|
||||
formatter.exclude = []
|
||||
|
|
|
|||
|
|
@ -263,6 +263,7 @@ linter.pylint.max_locals = 15
|
|||
linter.pylint.max_nested_blocks = 5
|
||||
linter.pyupgrade.keep_runtime_typing = false
|
||||
linter.ruff.parenthesize_tuple_in_subscript = false
|
||||
linter.ruff.strictly_empty_init_modules = false
|
||||
|
||||
# Formatter Settings
|
||||
formatter.exclude = []
|
||||
|
|
|
|||
|
|
@ -265,6 +265,7 @@ linter.pylint.max_locals = 15
|
|||
linter.pylint.max_nested_blocks = 5
|
||||
linter.pyupgrade.keep_runtime_typing = false
|
||||
linter.ruff.parenthesize_tuple_in_subscript = false
|
||||
linter.ruff.strictly_empty_init_modules = false
|
||||
|
||||
# Formatter Settings
|
||||
formatter.exclude = []
|
||||
|
|
|
|||
|
|
@ -265,6 +265,7 @@ linter.pylint.max_locals = 15
|
|||
linter.pylint.max_nested_blocks = 5
|
||||
linter.pyupgrade.keep_runtime_typing = false
|
||||
linter.ruff.parenthesize_tuple_in_subscript = false
|
||||
linter.ruff.strictly_empty_init_modules = false
|
||||
|
||||
# Formatter Settings
|
||||
formatter.exclude = []
|
||||
|
|
|
|||
|
|
@ -262,6 +262,7 @@ linter.pylint.max_locals = 15
|
|||
linter.pylint.max_nested_blocks = 5
|
||||
linter.pyupgrade.keep_runtime_typing = false
|
||||
linter.ruff.parenthesize_tuple_in_subscript = false
|
||||
linter.ruff.strictly_empty_init_modules = false
|
||||
|
||||
# Formatter Settings
|
||||
formatter.exclude = []
|
||||
|
|
|
|||
|
|
@ -262,6 +262,7 @@ linter.pylint.max_locals = 15
|
|||
linter.pylint.max_nested_blocks = 5
|
||||
linter.pyupgrade.keep_runtime_typing = false
|
||||
linter.ruff.parenthesize_tuple_in_subscript = false
|
||||
linter.ruff.strictly_empty_init_modules = false
|
||||
|
||||
# Formatter Settings
|
||||
formatter.exclude = []
|
||||
|
|
|
|||
|
|
@ -261,6 +261,7 @@ linter.pylint.max_locals = 15
|
|||
linter.pylint.max_nested_blocks = 5
|
||||
linter.pyupgrade.keep_runtime_typing = false
|
||||
linter.ruff.parenthesize_tuple_in_subscript = false
|
||||
linter.ruff.strictly_empty_init_modules = false
|
||||
|
||||
# Formatter Settings
|
||||
formatter.exclude = []
|
||||
|
|
|
|||
|
|
@ -261,6 +261,7 @@ linter.pylint.max_locals = 15
|
|||
linter.pylint.max_nested_blocks = 5
|
||||
linter.pyupgrade.keep_runtime_typing = false
|
||||
linter.ruff.parenthesize_tuple_in_subscript = false
|
||||
linter.ruff.strictly_empty_init_modules = false
|
||||
|
||||
# Formatter Settings
|
||||
formatter.exclude = []
|
||||
|
|
|
|||
|
|
@ -261,6 +261,7 @@ linter.pylint.max_locals = 15
|
|||
linter.pylint.max_nested_blocks = 5
|
||||
linter.pyupgrade.keep_runtime_typing = false
|
||||
linter.ruff.parenthesize_tuple_in_subscript = false
|
||||
linter.ruff.strictly_empty_init_modules = false
|
||||
|
||||
# Formatter Settings
|
||||
formatter.exclude = []
|
||||
|
|
|
|||
|
|
@ -374,6 +374,7 @@ linter.pylint.max_locals = 15
|
|||
linter.pylint.max_nested_blocks = 5
|
||||
linter.pyupgrade.keep_runtime_typing = false
|
||||
linter.ruff.parenthesize_tuple_in_subscript = false
|
||||
linter.ruff.strictly_empty_init_modules = false
|
||||
|
||||
# Formatter Settings
|
||||
formatter.exclude = []
|
||||
|
|
|
|||
9
ruff.schema.json
generated
9
ruff.schema.json
generated
|
|
@ -2926,6 +2926,13 @@
|
|||
"boolean",
|
||||
"null"
|
||||
]
|
||||
},
|
||||
"strictly-empty-init-modules": {
|
||||
"description": "Whether to require `__init__.py` files to contain no code at all, including imports and\ndocstrings (see `RUF070`).",
|
||||
"type": [
|
||||
"boolean",
|
||||
"null"
|
||||
]
|
||||
}
|
||||
},
|
||||
"additionalProperties": false
|
||||
|
|
@ -4046,6 +4053,8 @@
|
|||
"RUF064",
|
||||
"RUF065",
|
||||
"RUF066",
|
||||
"RUF07",
|
||||
"RUF070",
|
||||
"RUF1",
|
||||
"RUF10",
|
||||
"RUF100",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue