Skip to content

Commit

Permalink
fix: Add types to python-settings.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
avinashkurup committed Nov 3, 2020
1 parent 2a3bb4b commit d3f7b65
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions python-settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ import { commonExtensions, commonSettings } from "./vscode-settings.ts";

export interface PythonSettings {
"explorer.openEditors.visible": 0;
"terminal.integrated.shell.linux": "/bin/zsh";
"terminal.integrated.fontFamily": "CascadianCode NF";
"python.formatting.provider": "black";
"python.formatting.blackArgs": ["--line-length", "100"];
"python.linting.enabled": true;
"python.linting.pylintEnabled": false;
"python.linting.mypyEnabled": true;
"python.linting.lintOnSave": true;
"terminal.integrated.shell.linux": string;
"terminal.integrated.fontFamily": string;
"python.formatting.provider": string;
"python.formatting.blackArgs": string[];
"python.linting.enabled": boolean;
"python.linting.pylintEnabled": boolean;
"python.linting.mypyEnabled": boolean;
"python.linting.lintOnSave": boolean;
}

export const pythonSettings: Settings & PythonSettings = {
Expand Down

0 comments on commit d3f7b65

Please sign in to comment.