Browse Source

Add ruff quote-style (#4368)

A super small PR that adds simple quotes settings for ruff to make sure
we stay in the correct coding style.

---------

Co-authored-by: Paula Kammler <paula@zauberzeug.com>
Ember Light 2 months ago
parent
commit
7ab2549383
2 changed files with 3 additions and 1 deletions
  1. 0 1
      .vscode/settings.json
  2. 3 0
      pyproject.toml

+ 0 - 1
.vscode/settings.json

@@ -1,5 +1,4 @@
 {
-  "autopep8.args": ["--max-line-length=120"],
   "editor.defaultFormatter": "esbenp.prettier-vscode",
   "editor.formatOnSave": true,
   "prettier.printWidth": 120,

+ 3 - 0
pyproject.toml

@@ -116,6 +116,9 @@ module = [
 ]
 ignore_missing_imports = true
 
+[tool.autopep8]
+max-line-length = 120
+
 [tool.ruff]
 target-version = "py38"
 indent-width = 4