We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 352ded1 commit 66b0bd0Copy full SHA for 66b0bd0
.pre-commit-config.yaml
@@ -18,7 +18,6 @@ repos:
18
- id: check-yaml
19
- id: check-toml
20
- id: debug-statements
21
- - id: double-quote-string-fixer
22
- id: end-of-file-fixer
23
- id: trailing-whitespace
24
- repo: https://github.com/astral-sh/ruff-pre-commit
pyproject.toml
@@ -84,6 +84,7 @@ lint.select = [
84
'E', # pycodestyle
85
'F', # pyflakes
86
'I', # isort
87
+ 'Q', # flake8-quotes
88
'W', # pycodestyle
89
'RUF100', # ruff
90
]
@@ -98,6 +99,11 @@ known-first-party = [
98
99
'mesonpy',
100
101
102
+[tool.ruff.lint.flake8-quotes]
103
+avoid-escape = false
104
+inline-quotes = 'single'
105
+multiline-quotes = 'single'
106
+
107
108
[tool.coverage.run]
109
disable_warnings = [
0 commit comments