File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed
Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "files.insertFinalNewline" : true ,
3+ "files.trimFinalNewlines" : true ,
4+ "files.trimTrailingWhitespace" : true ,
5+ "files.associations" : {
6+ ".pylintrc" : " ini" ,
7+ ".style.yapf" : " ini"
8+ },
9+ "python.testing.unittestEnabled" : false ,
10+ "python.testing.nosetestsEnabled" : false ,
11+ "python.testing.pytestEnabled" : true ,
12+ "python.linting.pylintUseMinimalCheckers" : false ,
13+ "[python]" : {
14+ "editor.rulers" : [
15+ 80
16+ ],
17+ "editor.tabSize" : 2 ,
18+ "editor.detectIndentation" : false
19+ },
20+ "python.formatting.provider" : " yapf" ,
21+ "files.watcherExclude" : {
22+ "**/.git/**" : true
23+ },
24+ "files.exclude" : {
25+ "**/__pycache__" : true ,
26+ "**/.pytest_cache" : true ,
27+ "**/*.egg-info" : true
28+ }
29+ }
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ repository = "https://github.com/google-research/visu3d"
4242dev = [
4343 " pytest>=3.4" ,
4444 " pytest-xdist" ,
45+ # Development deps (linting, formating,...)
4546 " pylint>=2.6.0" ,
4647 " yapf" ,
4748 # Lazy deps
You can’t perform that action at this time.
0 commit comments