Skip to content

Commit 11c8f97

Browse files
ConchylicultorThe visu3d Authors
authored andcommitted
Add vscode, pylint,... to oss-kit to help external contributors
PiperOrigin-RevId: 451838587
1 parent cad21f4 commit 11c8f97

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

.vscode/settings.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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+
}

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ repository = "https://github.com/google-research/visu3d"
4242
dev = [
4343
"pytest>=3.4",
4444
"pytest-xdist",
45+
# Development deps (linting, formating,...)
4546
"pylint>=2.6.0",
4647
"yapf",
4748
# Lazy deps

0 commit comments

Comments
 (0)