Skip to content

Commit 6072ac2

Browse files
committed
updating vale rules to warning for now until we can get some of these things batch fixed.
1 parent 18634d6 commit 6072ac2

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.vale.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
StylesPath = styles
2-
MinAlertLevel = suggestion
2+
MinAlertLevel = warning
33

44
[*.{md}]
55
BasedOnStyles = ClickHouse

styles/ClickHouse/British.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ extends: substitution
66
message: "Use the US spelling '%s' instead of the British '%s'."
77
link: https://docs.gitlab.com/development/documentation/styleguide/#language
88
vocab: false
9-
level: error
9+
level: warning
1010
action:
1111
name: replace
1212
ignorecase: true

styles/ClickHouse/CodeblockFences.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ extends: existence
66
message: "Instead of '%s' for the code block, use yaml, ruby, plaintext, markdown, javascript, shell, go, python, dockerfile, or typescript."
77
link: https://docs.gitlab.com/development/documentation/styleguide/#code-blocks
88
vocab: false
9-
level: error
9+
level: warning
1010
scope: raw
1111
raw:
1212
- '\`\`\`(yml|rb|text|md|bash|sh\n|js\n|golang\n|py\n|docker\n|ts|irb)'

styles/ClickHouse/Exclamation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ extends: existence
22
message: "Don't use exclamation points in text."
33
link: "https://developers.google.com/style/exclamation-points"
44
nonword: true
5-
level: error
5+
level: warning
66
action:
77
name: edit
88
params:

styles/ClickHouse/HeadingPunctuation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ extends: existence
22
message: "Don't put a period at the end of a heading."
33
link: "https://developers.google.com/style/capitalization#capitalization-in-titles-and-headings"
44
nonword: true
5-
level: error
5+
level: warning
66
scope: heading
77
action:
88
name: edit

styles/ClickHouse/Headings.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
extends: capitalization
22
message: "'%s' should use sentence-style capitalization."
33
link: "https://developers.google.com/style/capitalization#capitalization-in-titles-and-headings"
4-
level: error
4+
level: warning
55
scope: heading
66
match: $sentence
77
indicators:

styles/ClickHouse/Ordinal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
extends: existence
22
message: "Spell out all ordinal numbers ('%s') in text."
33
link: 'https://developers.google.com/style/numbers'
4-
level: error
4+
level: warning
55
nonword: true
66
tokens:
77
- (?<!(?:January|February|March|April|May|June|July|August|September|October|November|December|Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s+)\d+(?:st|nd|rd|th)(?!,?\s*\d{4})

styles/ClickHouse/Repetition.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: |
55
extends: repetition
66
message: "Remove this duplicate word: '%s'."
77
vocab: false
8-
level: error
8+
level: warning
99
alpha: true
1010
tokens:
1111
- '[^\s]+'

0 commit comments

Comments
 (0)