We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf9dcc1 commit 21d5e19Copy full SHA for 21d5e19
.vscode/settings.json
@@ -0,0 +1,27 @@
1
+{
2
+ // jupyter
3
+ "jupyter.askForKernelRestart": false,
4
+ "notebook.consolidatedRunButton": true,
5
+ "notebook.formatOnSave.enabled": true,
6
+ "notebook.defaultFormatter": "charliermarsh.ruff",
7
+
8
+ // ruff
9
+ "ruff.enable": true,
10
+ "ruff.organizeImports": true,
11
+ "ruff.importStrategy": "useBundled",
12
+ "ruff.format.args": ["--line-length=120"],
13
+ "ruff.lint.run": "onSave",
14
+ "ruff.lint.args": [
15
+ "--line-length=120",
16
+ ],
17
18
+ // python linter and formatter
19
+ "[python]": {
20
+ "editor.formatOnSave": true,
21
+ "editor.defaultFormatter": "charliermarsh.ruff",
22
+ "editor.codeActionsOnSave": {
23
+ "source.fixAll": "never",
24
+ "source.organizeImports": "explicit"
25
+ }
26
+ },
27
+}
0 commit comments