mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-04-01 18:56:52 +00:00
This check requires authors to initialize empty or zero builtin types
using the literal syntax (e.g., `{}` instead of `dict()`).
Authors may ignore this requirement for certain builtins using the
`--ignore` option.
Authors may also forbid calling `dict()` with keyword arguments
(`dict(a=1, b=2)`) using the `--no-allow-dict-kwargs` flag.
7 lines
87 B
Python
7 lines
87 B
Python
c1 = complex()
|
|
d1 = dict()
|
|
f1 = float()
|
|
i1 = int()
|
|
l1 = list()
|
|
s1 = str()
|
|
t1 = tuple()
|