Skip to content

Instantly share code, notes, and snippets.

@logchan
Created December 24, 2022 19:41
Show Gist options
  • Save logchan/4da82fd7358cd921871e66e2ca62f7a8 to your computer and use it in GitHub Desktop.
Save logchan/4da82fd7358cd921871e66e2ca62f7a8 to your computer and use it in GitHub Desktop.
{
"C_Cpp.clang_format_fallbackStyle": "{ BasedOnStyle: LLVM }",
"[csharp]": {
"editor.formatOnType": true
},
"[dockercompose]": {
"editor.tabSize": 2
},
"[html]": {
"editor.tabSize": 2
},
"[javascript]": {
"editor.maxTokenizationLineLength": 2500,
"editor.tabSize": 2
},
"[json]": {
"editor.tabSize": 2
},
"[jsonc]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace",
"editor.tabSize": 2
},
"[typescript]": {
"editor.tabSize": 2
},
"[typescriptreact]": {
"editor.tabSize": 2
},
"[yaml]": {
"editor.autoIndent": "advanced",
"editor.insertSpaces": true,
"editor.tabSize": 2
},
"csharp.referencesCodeLens.enabled": false,
"csharp.testsCodeLens.enabled": false,
"editor.detectIndentation": false,
"editor.fontSize": 16,
"editor.unicodeHighlight.nonBasicASCII": false,
"editor.wordWrap": "on",
"explorer.confirmDragAndDrop": false,
"extensions.autoUpdate": false,
"extensions.ignoreRecommendations": true,
"files.associations": {
"*.md.html": "markdown",
"*.nfo": "xml",
"*.pyx": "python"
},
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.hg": true,
"**/.ipynb_checkpoints": true,
"**/.svn": true,
"**/.vs": true,
"**/CVS": true,
"**/Thumbs.db": true,
"**/__pycache__": true,
"**/node_modules": true
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"git.confirmSync": false,
"git.ignoreLegacyWarning": true,
"isort.args": [
"--src=${workspaceFolder}"
],
"javascript.format.semicolons": "insert",
"javascript.preferences.quoteStyle": "double",
"jupyter.askForKernelRestart": false,
"powershell.integratedConsole.showOnStartup": false,
"python.analysis.autoImportCompletions": false,
"python.formatting.autopep8Args": [
"--max_line_length",
"120",
"--ignore",
"E226,E24,W50,W690,E731"
],
"python.formatting.provider": "autopep8",
"python.linting.enabled": true,
"python.linting.pylintArgs": [
"--generated-members=numpy.*,torch.*,cv2.*,mitsuba.*",
"--disable=import-error,missing-module-docstring,missing-function-docstring,missing-class-docstring,logging-fstring-interpolation,line-too-long,invalid-name,consider-using-from-import,too-many-locals,relative-beyond-top-level,global-statement,unspecified-encoding,consider-using-enumerate,abstract-method,arguments-differ,disallowed-name,too-many-arguments,too-many-instance-attributes,too-many-ancestors,redefined-outer-name,broad-except,unused-argument,too-few-public-methods"
],
"python.linting.pylintEnabled": true,
"remote.SSH.showLoginTerminal": false,
"remote.SSH.useLocalServer": false,
"remote.autoForwardPorts": false,
"security.workspace.trust.enabled": false,
"sortJSON.contextMenu": {
"sortJSON": true,
"sortJSONAlphaNum": false,
"sortJSONAlphaNumReverse": false,
"sortJSONKeyLength": false,
"sortJSONKeyLengthReverse": false,
"sortJSONReverse": false,
"sortJSONType": false,
"sortJSONTypeReverse": false,
"sortJSONValues": false,
"sortJSONValuesReverse": false
},
"telemetry.telemetryLevel": "off",
"typescript.format.semicolons": "insert",
"typescript.preferences.quoteStyle": "double",
"typescript.updateImportsOnFileMove.enabled": "always",
"update.mode": "none",
"window.restoreWindows": "none",
"workbench.colorTheme": "Default Light+",
"workbench.editor.untitled.hint": "hidden",
"workbench.startupEditor": "newUntitledFile"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment