Skip to content
Snippets Groups Projects
Commit b77279e3 authored by Bastien Abadie's avatar Bastien Abadie Committed by Erwan Rouchet
Browse files

Run ruff with double quote checks only

parent b11703c6
No related branches found
No related tags found
1 merge request!2221Run ruff with double quote checks only
......@@ -11,6 +11,11 @@ repos:
- 'flake8-copyright==0.2.2'
- 'flake8-debugger==3.1.0'
- 'flake8-quotes==3.3.2'
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.11
hooks:
- id: ruff
args: [--fix]
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.1.0
hooks:
......
line-length = 120
[format]
# Like Black, use double quotes for strings.
quote-style = "double"
[lint]
select = ["Q0"]
ignore = ["F", "E"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment