Skip to content

Commit b74c79f

Browse files
committed
Remove Flake8 extension and adjust linting settings in devcontainer configuration
1 parent 5fe390b commit b74c79f

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,15 @@
88
"extensions": [
99
"ms-python.python",
1010
"ms-python.vscode-pylance",
11-
"ms-python.flake8",
1211
"GitHub.copilot",
1312
"GitHub.copilot-chat"
1413
],
1514
"settings": {
1615
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
17-
"python.terminal.activateEnvironment": true
16+
"python.terminal.activateEnvironment": true,
17+
"python.linting.enabled": false,
18+
"python.linting.flake8Enabled": false,
19+
"flake8.args": ["--max-line-length=127", "--extend-ignore=E203,W503"]
1820
}
1921
}
2022
}

0 commit comments

Comments
 (0)