From: Jérôme Benoit Date: Wed, 12 Jun 2024 20:45:04 +0000 (+0200) Subject: chore: move configuration specific to ocpp-server to its folder X-Git-Tag: v1.3.7~60 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=b00abe8ebfc55f1029de151e21d2b66a08293a4e;hp=cac769b661e6fc0c55440f2b8a1f0b0094d95c32;p=e-mobility-charging-stations-simulator.git chore: move configuration specific to ocpp-server to its folder Signed-off-by: Jérôme Benoit --- diff --git a/.vscode/extensions.json b/.vscode/extensions.json index 00345c6c..e28460d3 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -6,7 +6,6 @@ "dbaeumer.vscode-eslint", "EditorConfig.EditorConfig", "ms-azuretools.vscode-docker", - "ms-python.python", "sonarsource.sonarlint-vscode", "streetsidesoftware.code-spell-checker" ] diff --git a/tests/ocpp-server/.editorconfig b/tests/ocpp-server/.editorconfig new file mode 100644 index 00000000..a306293d --- /dev/null +++ b/tests/ocpp-server/.editorconfig @@ -0,0 +1,21 @@ +root = true + +[*] +indent_style = space +indent_size = 2 +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true +end_of_line = lf +max_line_length = 100 + +[*.py] +indent_size = 4 + +[*.md] +max_line_length = off +trim_trailing_whitespace = false + +[{Makefile,**.mk}] +# Use tabs for indentation (Makefiles require tabs) +indent_style = tab diff --git a/tests/ocpp-server/.vscode/extensions.json b/tests/ocpp-server/.vscode/extensions.json new file mode 100644 index 00000000..4850a673 --- /dev/null +++ b/tests/ocpp-server/.vscode/extensions.json @@ -0,0 +1,9 @@ +{ + // See https://go.microsoft.com/fwlink/?LinkId=827846 + // for the documentation about the extensions.json format + "recommendations": [ + "EditorConfig.EditorConfig", + "streetsidesoftware.code-spell-checker", + "ms-python.python" + ] +} diff --git a/tests/ocpp-server/.vscode/settings.json b/tests/ocpp-server/.vscode/settings.json new file mode 100644 index 00000000..e7aa6d94 --- /dev/null +++ b/tests/ocpp-server/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "cSpell.words": ["ocpp", "websockets"] +}