Skip to content

Commit d6dc19d

Browse files
authored
Introduce spell checking. (#524)
1 parent b4ecbd6 commit d6dc19d

File tree

6 files changed

+28
-4
lines changed

6 files changed

+28
-4
lines changed

.github/workflows/test.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,10 @@ jobs:
1212
- name: Test
1313
run: |
1414
make test
15+
16+
spelling:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/checkout@v4
20+
- name: Check spelling
21+
uses: crate-ci/typos@master

_typos.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[default]
2+
extend-ignore-re = [
3+
# This enables # spellchecker:disable-line
4+
"(?Rm)^.*(#|//)\\s*spellchecker:disable-line$",
5+
# This enables # spellchecker:off/on
6+
"(?s)(#|//)\\s*spellchecker:off.*?\\n\\s*(#|//)\\s*spellchecker:on",
7+
]
8+
9+
[default.extend-words]
10+
nd = "nd"
11+
cacl = "cacl"
12+
CLOS = "CLOS"
13+
Sover = "Sover"
14+
syncd = "syncd"
15+
16+
[files]
17+
extend-exclude = []

control-plane/roles/monitoring/templates/grafana-dashboards/sonic-exporter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2254,7 +2254,7 @@ data:
22542254
"refId": "A"
22552255
}
22562256
],
2257-
"title": "Tranceiver Info",
2257+
"title": "Transceiver Info",
22582258
"transformations": [
22592259
{
22602260
"id": "seriesToRows",

control-plane/roles/zitadel-db/meta/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
galaxy_info:
33
role_name: zitadel-db
44
author: metal-stack
5-
description: Deploys a database for the zitadel oidc proivder.
5+
description: Deploys a database for the zitadel oidc provider.
66
license: MIT
77
min_ansible_version: "2.10"
88
galaxy_tags: []

partition/roles/mgmt-firewall/defaults/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ mgmt_firewall_interfaces:
2626
- { option: '12', value: '' }
2727
mgmt_firewall_wan:
2828
default:
29-
ip_adress: ''
29+
ip_address: ''
3030
gateway: ''
3131
net_mask: ''
3232
interfaces:

partition/roles/mgmt-firewall/tasks/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
133133
- name: Configure Default wan
134134
ansible.builtin.raw: |
135-
uci set network.wan.ipaddr='{{mgmt_firewall_interfaces.mgmt_firewall_wan.default.ip_adress}}'
135+
uci set network.wan.ipaddr='{{mgmt_firewall_interfaces.mgmt_firewall_wan.default.ip_address}}'
136136
uci set network.wan.netmask='{{mgmt_firewall_interfaces.mgmt_firewall_wan.default.net_mask}}'
137137
uci set network.wan.gateway='{{mgmt_firewall_interfaces.mgmt_firewall_wan.default.gateway}}'
138138
uci add_list network.wan.dns='1.1.1.1'

0 commit comments

Comments
 (0)