Refactor code structure for improved readability and maintainability
This commit is contained in:
parent
02af67fffb
commit
0b75c3254c
|
|
@ -252,4 +252,4 @@ src/mrh_saltoki_common/py.typed
|
|||
*.history
|
||||
|
||||
.devcontainer
|
||||
.vscode
|
||||
# .vscode
|
||||
|
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
"makefile.configureOnOpen": false,
|
||||
"python-envs.pythonProjects": [],
|
||||
"python.terminal.useEnvFile": true,
|
||||
"python.envFile": "${workspaceFolder}/.env",
|
||||
"jupyter.logging.level": "info",
|
||||
"terminal.integrated.env.linux": {
|
||||
"PYTHONPATH": "${workspaceFolder}:${env:PYTHONPATH}"
|
||||
},
|
||||
"python.analysis.ignore": [
|
||||
"*"
|
||||
], // Disables Pylance's native linting
|
||||
"python.analysis.typeCheckingMode": "basic", // Keeps Pylance's type validation
|
||||
"[python]": {
|
||||
"editor.defaultFormatter": "charliermarsh.ruff",
|
||||
"editor.formatOnSave": true,
|
||||
"editor.codeActionsOnSave": {
|
||||
"source.fixAll.ruff": "explicit",
|
||||
"source.organizeImports.ruff": "explicit"
|
||||
}
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue