This repository was archived by the owner on Apr 26, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +24
-3
lines changed Expand file tree Collapse file tree 3 files changed +24
-3
lines changed Original file line number Diff line number Diff line change 104
104
# mypy
105
105
.mypy_cache /
106
106
107
- # .vscode
108
- .vscode /
109
-
110
107
# OS files
111
108
.DS_Store
112
109
Original file line number Diff line number Diff line change
1
+ {
2
+ "python.analysis.typeCheckingMode" : " basic" ,
3
+ "python.analysis.autoImportCompletions" : true ,
4
+ "python.envFile" : " ${workspaceFolder}/.env.testing" ,
5
+ "python.terminal.activateEnvironment" : true ,
6
+ "python.terminal.activateEnvInCurrentTerminal" : true ,
7
+ "python.testing.unittestEnabled" : false ,
8
+ "python.testing.pytestEnabled" : true ,
9
+ "editor.rulers" : [88 ],
10
+ "python.defaultInterpreterPath" : " ${workspaceFolder}/.hatch/fief-python/bin/python" ,
11
+ "python.testing.pytestPath" : " ${workspaceFolder}/.hatch/fief-python/bin/pytest" ,
12
+ "python.testing.cwd" : " ${workspaceFolder}" ,
13
+ "python.testing.pytestArgs" : [" -n 0" , " --no-cov" ],
14
+ "[python]" : {
15
+ "editor.formatOnSave" : true ,
16
+ "editor.codeActionsOnSave" : {
17
+ "source.fixAll" : " explicit" ,
18
+ "source.organizeImports" : " explicit"
19
+ },
20
+ "editor.defaultFormatter" : " charliermarsh.ruff"
21
+ }
22
+ }
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ ignore_missing_imports = true
8
8
9
9
[tool .ruff ]
10
10
target-version = " py38"
11
+
12
+ [tool .ruff .lint ]
11
13
extend-select = [" I" , " UP" , " TRY" ]
12
14
ignore = [" E501" ]
13
15
per-file-ignores = {"tests/test_init.py" = [" F401" ]}
You can’t perform that action at this time.
0 commit comments