Skip to content

Commit ee5d4aa

Browse files
author
automatic-merge
committed
Merge remote branch 'origin/master' into edge
2 parents dd10f0d + dfb1456 commit ee5d4aa

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+29483
-4
lines changed

.vscode/extensions.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"recommendations": [
33
"ms-python.black-formatter",
44
"ms-python.flake8",
5+
"ms-python.mypy-type-checker",
56
"editorconfig.editorconfig",
67
"dbaeumer.vscode-eslint",
78
"esbenp.prettier-vscode",

.vscode/settings.json.tmpl

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
{
2+
"files.associations": {
3+
// Treat the settings template file as JSON so it benefits from linting
4+
// and formatting
5+
"*.json.tmpl": "jsonc"
6+
},
27
"ada.projectFile": "gnat/lsp_server.gpr",
38
"ada.scenarioVariables": {
49
// Use static linking in local development to enable running the
@@ -11,12 +16,14 @@
1116
"editor.formatOnType": false,
1217
"editor.tabSize": 3
1318
},
19+
"ada.onTypeFormatting.indentOnly": true,
20+
"[ada]": {
21+
"editor.autoIndent": "none",
22+
"editor.formatOnType": false,
23+
"editor.tabSize": 3
24+
},
1425
"python.analysis.extraPaths": ["testsuite"],
15-
"python.linting.enabled": true,
16-
"python.linting.mypyEnabled": true,
17-
"python.linting.flake8Enabled": true,
1826
"flake8.args": ["--max-line-length", "88"],
19-
"python.formatting.provider": "black",
2027
"[python]": {
2128
// Use the same line length as black and flake8
2229
"vim.textwidth": 88

0 commit comments

Comments
 (0)