clip-tokenizer-util / .vscode /settings.json
neggles's picture
does this work?
885a42a
{
"editor.insertSpaces": true,
"editor.tabSize": 4,
"files.trimTrailingWhitespace": true,
"editor.rulers": [ 100, 120 ],
"files.associations": {
"*.yaml": "yaml",
".gitignore": "gitignore",
".prettierrc": "json",
"requirements*.txt": "pip-requirements"
},
"[python]": {
"editor.wordBasedSuggestions": false,
"editor.formatOnSave": true,
"editor.defaultFormatter": "ms-python.black-formatter",
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"python.analysis.extraPaths": [
"../..",
"../../repositories/k-diffusion",
"../../repositories/generative-models",
"../../repositories/stable-diffusion-stability-ai"
],
"black-formatter.args": [ "--line-length=110" ],
"[json]": {
"editor.tabSize": 2,
"editor.detectIndentation": false,
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "file",
"editor.defaultFormatter": "vscode.json-language-features"
},
"[jsonc]": {
"editor.tabSize": 2,
"editor.detectIndentation": false,
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "file",
"editor.defaultFormatter": "vscode.json-language-features"
},
"[yaml]": {
"editor.detectIndentation": false,
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.formatOnSaveMode": "file"
},
"yaml.format.bracketSpacing": true,
"yaml.format.proseWrap": "preserve",
"yaml.format.singleQuote": false,
"yaml.format.printWidth": 110,
"remote.autoForwardPorts": false,
"remote.autoForwardPortsSource": "process"
}