Skip to content

Instantly share code, notes, and snippets.

@nagataka
Created September 4, 2020 22:55
Show Gist options
  • Save nagataka/73c842280b2be9e518854fff2108bf16 to your computer and use it in GitHub Desktop.
Save nagataka/73c842280b2be9e518854fff2108bf16 to your computer and use it in GitHub Desktop.
VS Code settings.json
{
"python.formatting.provider": "black",
"python.linting.pylintEnabled": false,
"python.linting.flake8Enabled": true,
"python.linting.flake8Args": [
"--ignore=E501,W503"
],
"python.sortImports.args": [
"-m 3"
],
"python.jediEnabled": false,
"remote.containers.defaultExtensions": [
"ms-python.python",
"christian-kohler.path-intellisense",
"sbsnippets.pytorch-snippets",
"vscodevim.vim",
"streetsidesoftware.code-spell-checker",
"vscode-icons-team.vscode-icons"
],
"runner.languageMap": {
"c" : "~/Documents/code/C/clang.sh"
},
"editor.fontSize": 20,
"cSpell.userWords": [
"conv",
"cuda",
"dcgan",
"deque",
"dtype",
"gan",
"gans",
"ndarray",
"neuromorphic",
"numpy",
"optim",
"pyplot",
"relu",
"scipy",
"stochasticity",
"tqdm",
"uint",
"unsqueeze"
],
"workbench.iconTheme": "vscode-icons",
"cSpell.enabledLanguageIds": [
"asciidoc",
"c",
"cpp",
"csharp",
"css",
"git-commit",
"go",
"handlebars",
"haskell",
"html",
"jade",
"java",
"javascript",
"javascriptreact",
"json",
"jsonc",
"latex",
"less",
"markdown",
"php",
"plaintext",
"pug",
"python",
"restructuredtext",
"rust",
"scala",
"scss",
"shellscript",
"ssh_config",
"text",
"typescript",
"typescriptreact",
"yaml",
"yml"
],
"cSpell.language": "en",
"python.languageServer": "Microsoft"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment