-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.js
121 lines (121 loc) · 1.52 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/**
* List of *many* English, both British and American, weasel words.
*/
export const weasels = [
'a lot',
'about',
'acts',
'again',
'all',
'almost',
'already',
'also',
'anyway',
'appeared',
'appears',
'are a number',
'arguably',
'back',
'be able to',
'began',
'believed',
'better',
'bit',
'clearly',
'close',
'combats',
'completely',
'considered',
'could',
'decided',
'down',
'effective',
'efficient',
'enough',
'even',
'ever',
'exceedingly',
'excellent',
'expert',
'experts',
'extremely',
'fairly',
'far',
'felt',
'few',
'gains',
'heard',
'helps',
'huge',
'improved',
'interestingly',
'is a number',
'is like',
'just',
'knew',
'largely',
'like',
'linked to',
'literally',
'looked',
'looks',
'lots',
'many',
'might',
'most',
'mostly',
'not rocket science',
'noticed',
'often',
'only',
'outside the box',
'over',
'own',
'pretty',
'probably',
'quite',
'rather',
'real',
'realised',
'realized',
'really',
'recognised',
'recognized',
'relatively',
'remarkably',
'reportedly',
'saw',
'seemed',
'seems',
'several',
'significantly',
'smelled',
'so',
'some',
'somehow',
'sort',
'started',
'still',
'substantially',
'supports',
'supposed',
'surprisingly',
'that',
'then',
'thought',
'tiny',
'touched',
'understood',
'up',
'useful',
'various',
'vast',
'very',
'virtually',
'wanted',
'watched',
'well',
'wished',
'wondered',
'works'
]