-
Notifications
You must be signed in to change notification settings - Fork 13
/
dictionary.js
69 lines (68 loc) · 989 Bytes
/
dictionary.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
module.exports = [
// e.g. FooBar
/^[A-Z].*/,
// e.g. fooBar or .fooBar
/^\.?[a-z0-9].*[A-Z0-9].*/,
// e.g foo_bar or foo-bar-baz
/^[a-z]*[-_][a-z]+.*/,
// e.g. foo:bar,
/^[A-Za-z]+:.*/,
//Allowed words
/^colour/,
/^luminance/,
/^neighbour/,
/^acutance/,
/^bicubic/,
/^acutance/,
/^bilinear/,
/^nohalo/,
/^colorspace/,
/^centre/,
/^hsv/,
/^cmyk/,
/^labq/,
/^rgb/,
/^cmc/,
/^subsampling/,
/^bitdepth/,
/^yres/,
/^xres/,
/^lzw/,
/^enums/,
/^srgb/,
/^dest/,
/^chroma/,
/^interpolator/,
/^scrgb/,
/^jpeg/,
/^avif/,
/^png/,
/^webp/,
/^grayscale/,
/^premultiplied/,
/^img/,
/^url/,
/^http/,
/^https/,
/^api/,
/^idx/,
/^idy/,
/^odx/,
/^ody/,
/^src/,
/^mitchell/,
/^fourier/,
/^const/,
/^json/,
/^invertase/,
/^firebase/,
/^href/,
/^stringified/,
/^acknowledgment/,
/^acknowledgments/,
/^unacknowledge/,
/^uid/,
/^nodemailer/,
/^archiver/,
/^unacknowledgment/,
];