Skip to content

Commit dc1c5ef

Browse files
chore: Set default formatters for yaml and toml files in vscode settings (#929)
--------- Co-authored-by: Abigail Emery <[email protected]>
1 parent ecefb57 commit dc1c5ef

File tree

4 files changed

+23
-15
lines changed

4 files changed

+23
-15
lines changed

.copier-answers.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ author_name: Callum Forrester
66
component_lifecycle: production
77
component_owner: user:vid18871
88
component_type: service
9-
description: Lightweight bluesky-as-a-service wrapper application. Also usable as
9+
description:
10+
Lightweight bluesky-as-a-service wrapper application. Also usable as
1011
a library.
1112
distribution_name: blueapi
1213
docker: true

.devcontainer/devcontainer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
"ryanluker.vscode-coverage-gutters",
2929
"charliermarsh.ruff",
3030
"ms-pyright.pyright",
31-
"ms-azuretools.vscode-docker"
31+
"ms-azuretools.vscode-docker",
32+
"ms-kubernetes-tools.vscode-kubernetes-tools"
3233
]
3334
}
3435
},

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,10 @@
99
"[python]": {
1010
"editor.defaultFormatter": "charliermarsh.ruff",
1111
},
12+
"[yaml]": {
13+
"editor.defaultFormatter": "redhat.vscode-yaml",
14+
},
15+
"[toml]": {
16+
"editor.defaultFormatter": "tamasfe.even-better-toml",
17+
}
1218
}

helm/blueapi/values.yaml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -98,14 +98,14 @@ worker:
9898
port: 8000
9999
env:
100100
sources:
101-
- kind: deviceFunctions
102-
module: blueapi.startup.example_devices
103-
- kind: planFunctions
104-
module: blueapi.startup.example_plans
105-
- kind: planFunctions
106-
module: dodal.plans
107-
- kind: planFunctions
108-
module: dodal.plan_stubs.wrapped
101+
- kind: deviceFunctions
102+
module: blueapi.startup.example_devices
103+
- kind: planFunctions
104+
module: blueapi.startup.example_plans
105+
- kind: planFunctions
106+
module: dodal.plans
107+
- kind: planFunctions
108+
module: dodal.plan_stubs.wrapped
109109
stomp:
110110
enabled: false
111111
auth:
@@ -119,10 +119,10 @@ worker:
119119
# - name: "dodal"
120120
# remote_url: https://github.com/DiamondLightSource/dodal.git
121121
logging:
122-
level: "INFO"
123-
graylog:
124-
enabled: False
125-
host: "graylog-log-target.diamond.ac.uk"
126-
port: 12232
122+
level: "INFO"
123+
graylog:
124+
enabled: False
125+
host: "graylog-log-target.diamond.ac.uk"
126+
port: 12232
127127
initContainer:
128128
enabled: false

0 commit comments

Comments
 (0)