-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
863abe4
commit 2085834
Showing
5 changed files
with
108 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"files.watcherExclude": { | ||
"**/.git/objects/**": true, | ||
"**/.git/subtree-cache/**": true | ||
}, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"python.analysis.typeCheckingMode": "basic", | ||
"editor.formatOnSave": true, | ||
"editor.minimap.enabled": false, | ||
"autopep8.args": ["--max-line-length=120", "--experimental"], | ||
"pylint.args": [ | ||
"--disable=C0103", // Invalid name (e.g., variable/function/class naming conventions) | ||
"--disable=C0111", // Missing docstring (in function/class/method) | ||
"--disable=C0114", // Missing module docstring | ||
"--disable=C0301", // Line too long (exceeds character limit) | ||
"--disable=W0718", // Catching too general exception | ||
"--disable=W0719", // Rraising too general exception | ||
"--disable=W1203", // Use % formatting in logging functions and pass the % parameters as arguments | ||
"--disable=W1514", // Using open without explicitly specifying an encoding | ||
"--generated-members=numpy.* ,torch.*,cv2.*" // Required because pylint doesn't recognize numpy and torch methods | ||
], | ||
"[python]": { | ||
"editor.defaultFormatter": "ms-python.autopep8", | ||
"editor.codeActionsOnSave": { | ||
"source.organizeImports": true | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters