-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.json
38 lines (38 loc) · 1.74 KB
/
settings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"[json]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[jsonc]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[python]": { "editor.defaultFormatter": "charliermarsh.ruff" },
"[toml]": { "editor.defaultFormatter": "tamasfe.even-better-toml" },
"editor.codeActionsOnSave": { "source.organizeImports": "explicit" },
"editor.formatOnSave": true,
"evenBetterToml.formatter.allowedBlankLines": 1,
"evenBetterToml.formatter.arrayAutoCollapse": true,
"evenBetterToml.formatter.arrayAutoExpand": true,
"evenBetterToml.formatter.arrayTrailingComma": true,
"evenBetterToml.formatter.columnWidth": 100,
"evenBetterToml.formatter.compactArrays": true,
"evenBetterToml.formatter.compactEntries": true,
"evenBetterToml.formatter.compactInlineTables": true,
"evenBetterToml.formatter.indentEntries": true,
"evenBetterToml.formatter.indentString": " ",
"evenBetterToml.formatter.indentTables": true,
"evenBetterToml.formatter.inlineTableExpand": true,
"evenBetterToml.formatter.reorderArrays": true,
"evenBetterToml.formatter.reorderKeys": true,
"evenBetterToml.formatter.trailingNewline": true,
"evenBetterToml.schema.enabled": true,
"evenBetterToml.schema.links": true,
"evenBetterToml.syntax.semanticTokens": false,
"notebook.formatOnCellExecution": true,
"notebook.formatOnSave.enabled": true,
"prettier.printWidth": 100,
"pylint.ignorePatterns": ["*"],
"python.analysis.autoFormatStrings": true,
"python.analysis.inlayHints.functionReturnTypes": false,
"python.analysis.typeCheckingMode": "basic",
"python.languageServer": "Pylance",
"python.terminal.activateEnvInCurrentTerminal": true,
"python.testing.pytestEnabled": true,
"rewrap.autoWrap.enabled": true,
"rewrap.wrappingColumn": 100
}