Skip to content

Commit 70fcc42

Browse files
committed
Update configuration
1 parent 41551c6 commit 70fcc42

File tree

4 files changed

+16
-1
lines changed

4 files changed

+16
-1
lines changed

.editorconfig

+7
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,13 @@ indent_style = space
2121
insert_final_newline = true
2222
trim_trailing_whitespace = true
2323

24+
[*.toml]
25+
charset = utf-8
26+
indent_size = 4
27+
indent_style = space
28+
insert_final_newline = true
29+
trim_trailing_whitespace = true
30+
2431
[*.yaml]
2532
charset = utf-8
2633
indent_size = 2

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
# Python
1818
__pycache__/
1919
*.egg-info/
20+
*.pyc
2021

2122
# Python virtual environment
2223
.venv/

.vscode/settings_default.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@
1111

1212
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/scripts/python",
1313

14-
"python.analysis.extraPaths": [ "./Automation/Setup" ],
14+
"python.analysis.extraPaths": [
15+
"./Automation/Scripts",
16+
"./Sources/toolkit/",
17+
],
18+
1519
"python.analysis.typeCheckingMode": "basic",
1620

1721
"python.testing.pytestEnabled": true,

cspell.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,6 @@ words:
1313
- benjaminhamon
1414
- bhamon
1515
- hamon
16+
17+
enableFiletypes:
18+
- toml

0 commit comments

Comments
 (0)