diff --git a/packages/internal/docs/docs/introduction/coding-standards/linters/ruff.mdx b/packages/internal/docs/docs/introduction/coding-standards/linters/ruff.mdx index 8b049d126..210ee5038 100644 --- a/packages/internal/docs/docs/introduction/coding-standards/linters/ruff.mdx +++ b/packages/internal/docs/docs/introduction/coding-standards/linters/ruff.mdx @@ -49,15 +49,15 @@ Rules that are ignored: - `S101` - Use of assert detected -- `A003` - Class attribute {name} is shadowing a python builtin +- `A003` - Class attribute \{name} is shadowing a python builtin -- `S105` - Possible hardcoded password: "{}" +- `S105` - Possible hardcoded password: "\{}" -- `SIM105` - Use contextlib.suppress({exception}) instead of try-except-pass +- `SIM105` - Use contextlib.suppress(\{exception}) instead of try-except-pass -- `A002` - Argument {name} is shadowing a python builtin +- `A002` - Argument \{name} is shadowing a python builtin - `B904` - Within an except clause, raise exceptions with raise ... from err or raise ... from None to distinguish them from errors in exception handling -- `PLR0913` - Too many arguments to function call ({c_args} > {max_args}) -::: \ No newline at end of file +- `PLR0913` - Too many arguments to function call (\{c_args} > \{max_args}) +:::