Skip to content

Commit 95da9e1

Browse files
committed
Vale: raising alert level of some tests
Signed-off-by: Lynette Miles <[email protected]>
1 parent b8d2911 commit 95da9e1

File tree

13 files changed

+18
-18
lines changed

13 files changed

+18
-18
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ within a few minutes.
4242
If you open a pull request that requires ongoing discussion or review, the Fluent Bit
4343
maintainers will add a `waiting-for-user` to your pull request. This tag means that
4444
we're blocked from moving forward until you reply. To keep contributions from going
45-
stale, we'll wait 45 days for your response, but we may close the pull request if we
45+
stale, we'll wait 45 days for your response, but we might close the pull request if we
4646
don't hear back from you by then.
4747

4848
## Submit a contribution

vale-styles/FluentBit/DontUse.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
extends: existence
33
message: "We don't use '%s'."
44
ignorecase: true
5-
level: suggestion
5+
level: error
66
tokens:
77
- a.k.a.
88
- aka

vale-styles/FluentBit/FirstPerson.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ extends: existence
22
message: "Avoid first-person pronouns such as '%s'."
33
link: 'https://developers.google.com/style/pronouns#personal-pronouns'
44
ignorecase: true
5-
level: suggestion
5+
level: warning
66
nonword: true
77
tokens:
88
- (?:^|\s)I\s
99
- (?:^|\s)I,\s
1010
- \bI'm\b
1111
- \bme\b
1212
- \bmy\b
13-
- \bmine\b
13+
- \bmine\b

vale-styles/FluentBit/Hints.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
extends: existence
22
message: "Instead of using `>` to call out information, use GitBook hint syntax. https://gitbook.com/docs/creating-content/blocks/hint#representation-in-markdown"
3-
level: suggestion
3+
level: error
44
nonword: true
55
scope: raw
66
tokens:

vale-styles/FluentBit/Latin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ extends: substitution
22
message: "Use '%s' instead of '%s'."
33
link: 'https://developers.google.com/style/abbreviations'
44
ignorecase: true
5-
level: suggestion
5+
level: error
66
nonword: true
77
action:
88
name: replace

vale-styles/FluentBit/MayMightCan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
extends: existence
33
message: "Use 'can' for permissions or 'might' for possibility."
4-
level: suggestion
4+
level: error
55
ignorecase: true
66
tokens:
77
- may

vale-styles/FluentBit/OptionalPlurals.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
extends: existence
22
message: "Don't use plurals in parentheses such as in '%s'."
33
link: 'https://developers.google.com/style/plurals-parentheses'
4-
level: suggestion
4+
level: error
55
nonword: true
66
action:
77
name: edit

vale-styles/FluentBit/Periods.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
extends: existence
22
message: "Don't use periods with acronyms or initialisms such as '%s'."
33
link: 'https://developers.google.com/style/abbreviations'
4-
level: suggestion
4+
level: error
55
nonword: true
66
tokens:
7-
- '\b(?:[A-Z]\.){3,}'
7+
- '\b(?:[A-Z]\.){3,}'

vale-styles/FluentBit/Possessives.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
extends: existence
33
message: "Rewrite '%s' to not use 's."
4-
level: suggestion
4+
level: warning
55
ignorecase: true
66
tokens:
77
- Bit's

vale-styles/FluentBit/Ranges.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ extends: existence
22
message: "Don't add words such as 'from' or 'between' to describe a range of numbers."
33
link: 'https://developers.google.com/style/hyphens'
44
nonword: true
5-
level: suggestion
5+
level: warning
66
tokens:
7-
- '(?:from|between)\s\d+\s?-\s?\d+'
7+
- '(?:from|between)\s\d+\s?-\s?\d+'

0 commit comments

Comments
 (0)