Skip to content

Commit 5ed017b

Browse files
Revert line_forbidden.patterns
1 parent e3e8eff commit 5ed017b

File tree

1 file changed

+62
-62
lines changed

1 file changed

+62
-62
lines changed
Lines changed: 62 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,62 @@
1-
## reject `m_data` as there's a certain OS which has evil defines that break things if it's used elsewhere
2-
## \bm_data\b
3-
#
4-
## If you have a framework that uses `it()` for testing and `fit()` for debugging a specific test,
5-
## you might not want to check in code where you were debugging w/ `fit()`, in which case, you might want
6-
## to use this:
7-
##\bfit\(
8-
#
9-
## s.b. GitHub
10-
##\bGithub\b
11-
#
12-
## s.b. GitLab
13-
#\bGitlab\b
14-
#
15-
## s.b. JavaScript
16-
#\bJavascript\b
17-
#
18-
## s.b. Microsoft
19-
#\bMicroSoft\b
20-
#
21-
## s.b. another
22-
#\ban[- ]other\b
23-
#
24-
## s.b. greater than
25-
#\bgreater then\b
26-
#
27-
## s.b. into
28-
#\sin to\s
29-
#
30-
## s.b. opt-in
31-
#\sopt in\s
32-
#
33-
## s.b. less than
34-
#\bless then\b
35-
#
36-
## s.b. otherwise
37-
#\bother[- ]wise\b
38-
#
39-
## s.b. nonexistent
40-
#\bnon existing\b
41-
#\b[Nn]o[nt][- ]existent\b
42-
#
43-
## s.b. preexisting
44-
#[Pp]re[- ]existing
45-
#
46-
## s.b. preempt
47-
#[Pp]re[- ]empt\b
48-
#
49-
## s.b. preemptively
50-
#[Pp]re[- ]emptively
51-
#
52-
## s.b. reentrancy
53-
#[Rr]e[- ]entrancy
54-
#
55-
## s.b. reentrant
56-
#[Rr]e[- ]entrant
57-
#
58-
## s.b. workaround(s)
59-
#\bwork[- ]arounds?\b
60-
#
61-
## Reject duplicate words
62-
#\s([A-Z]{3,}|[A-Z][a-z]{2,}|[a-z]{3,})\s\g{-1}\s
1+
# reject `m_data` as there's a certain OS which has evil defines that break things if it's used elsewhere
2+
# \bm_data\b
3+
4+
# If you have a framework that uses `it()` for testing and `fit()` for debugging a specific test,
5+
# you might not want to check in code where you were debugging w/ `fit()`, in which case, you might want
6+
# to use this:
7+
#\bfit\(
8+
9+
# s.b. GitHub
10+
#\bGithub\b
11+
12+
# s.b. GitLab
13+
\bGitlab\b
14+
15+
# s.b. JavaScript
16+
\bJavascript\b
17+
18+
# s.b. Microsoft
19+
\bMicroSoft\b
20+
21+
# s.b. another
22+
\ban[- ]other\b
23+
24+
# s.b. greater than
25+
\bgreater then\b
26+
27+
# s.b. into
28+
\sin to\s
29+
30+
# s.b. opt-in
31+
\sopt in\s
32+
33+
# s.b. less than
34+
\bless then\b
35+
36+
# s.b. otherwise
37+
\bother[- ]wise\b
38+
39+
# s.b. nonexistent
40+
\bnon existing\b
41+
\b[Nn]o[nt][- ]existent\b
42+
43+
# s.b. preexisting
44+
[Pp]re[- ]existing
45+
46+
# s.b. preempt
47+
[Pp]re[- ]empt\b
48+
49+
# s.b. preemptively
50+
[Pp]re[- ]emptively
51+
52+
# s.b. reentrancy
53+
[Rr]e[- ]entrancy
54+
55+
# s.b. reentrant
56+
[Rr]e[- ]entrant
57+
58+
# s.b. workaround(s)
59+
\bwork[- ]arounds?\b
60+
61+
# Reject duplicate words
62+
\s([A-Z]{3,}|[A-Z][a-z]{2,}|[a-z]{3,})\s\g{-1}\s

0 commit comments

Comments
 (0)