initial commit
This commit is contained in:
86
.vscode/tools/settings.template.json
vendored
Normal file
86
.vscode/tools/settings.template.json
vendored
Normal file
@@ -0,0 +1,86 @@
|
||||
{
|
||||
"files.associations": {
|
||||
"*.tpp": "cpp",
|
||||
"*.kit": "toml",
|
||||
"*.rst": "restructuredtext"
|
||||
},
|
||||
"editor.rulers": [120],
|
||||
|
||||
// files to be ignored by the linter
|
||||
"files.watcherExclude": {
|
||||
"**/.git/objects/**": true,
|
||||
"**/.git/subtree-cache/**": true,
|
||||
"**/node_modules/**": true,
|
||||
"**/_isaac_sim/**": true,
|
||||
"**/_compiler/**": true
|
||||
},
|
||||
// Configuration for spelling checker
|
||||
"spellright.language": [
|
||||
"en-US-10-1."
|
||||
],
|
||||
"spellright.documentTypes": [
|
||||
"markdown",
|
||||
"latex",
|
||||
"plaintext",
|
||||
"cpp",
|
||||
"asciidoc",
|
||||
"python",
|
||||
"restructuredtext"
|
||||
],
|
||||
"cSpell.words": [
|
||||
"literalinclude",
|
||||
"linenos",
|
||||
"instanceable",
|
||||
"isaacSim",
|
||||
"jacobians",
|
||||
"pointcloud",
|
||||
"ridgeback",
|
||||
"rllib",
|
||||
"robomimic",
|
||||
"teleoperation",
|
||||
"xform",
|
||||
"numpy",
|
||||
"tensordict",
|
||||
"flatcache",
|
||||
"physx",
|
||||
"dpad",
|
||||
"gamepad",
|
||||
"linspace",
|
||||
"upsampled",
|
||||
"downsampled",
|
||||
"arange",
|
||||
"discretization",
|
||||
"trimesh",
|
||||
"uninstanceable"
|
||||
],
|
||||
// This enables python language server. Seems to work slightly better than jedi:
|
||||
"python.languageServer": "Pylance",
|
||||
// We use "black" as a formatter:
|
||||
"python.formatting.provider": "black",
|
||||
"python.formatting.blackArgs": ["--line-length", "120"],
|
||||
// Use flake8 for linting
|
||||
"python.linting.pylintEnabled": false,
|
||||
"python.linting.flake8Enabled": true,
|
||||
"python.linting.flake8Args": [
|
||||
"--max-line-length=120"
|
||||
],
|
||||
// Use docstring generator
|
||||
"autoDocstring.docstringFormat": "google",
|
||||
"autoDocstring.guessTypes": true,
|
||||
// Python environment path
|
||||
// note: the default interpreter is overridden when user selects a workspace interpreter
|
||||
// in the status bar. For example, the virtual environment python interpreter
|
||||
"python.defaultInterpreterPath": "",
|
||||
// ROS distribution
|
||||
"ros.distro": "noetic",
|
||||
// Language specific settings
|
||||
"[python]": {
|
||||
"editor.tabSize": 4
|
||||
},
|
||||
"[restructuredtext]": {
|
||||
"editor.tabSize": 2
|
||||
},
|
||||
// Python extra paths
|
||||
// Note: this is filled up when vscode is set up for the first time
|
||||
"python.analysis.extraPaths": []
|
||||
}
|
||||
Reference in New Issue
Block a user