-
Notifications
You must be signed in to change notification settings - Fork 56
/
.cspell.json
86 lines (86 loc) · 2.16 KB
/
.cspell.json
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
{
"version": "0.2",
"language": "en-US",
"allowCompoundWords": false,
"globRoot": ".",
"ignorePaths": [
"**/.*.json",
".*ignore",
"composer.lock",
"assets/vendor/**",
"misc/jquery.form.js",
"lib/Drupal/Component/Diff/**",
"lib/Drupal/Component/Transliteration/data/**",
"lib/Drupal/Core/File/MimeType/ExtensionMimeTypeGuesser.php",
"**/LICENSE.txt",
"../**/LICENSE.txt",
"modules/**/Migrate*Test.php",
"modules/ckeditor5/js/build/*",
"modules/media/tests/fixtures/oembed/*",
"modules/migrate_drupal/tests/fixtures/drupal6.php",
"modules/migrate_drupal/tests/fixtures/drupal7.php",
"modules/navigation/assets/**",
"modules/search/tests/UnicodeTest.txt",
"modules/system/tests/logo.svgz",
"node_modules/*",
"profiles/demo_umami/modules/demo_umami_content/default_content/languages/es/**/*",
"tests/fixtures/config_install/*",
"tests/fixtures/files/*",
"tests/Drupal/Tests/Component/Annotation/Doctrine/**",
"tests/PHPStan/vendor/**",
"themes/olivero/fonts/**",
"COPYRIGHT.txt",
"MAINTAINERS.txt",
"package.json",
"yarn.lock",
".yarnrc.yml",
".yarn/*",
"misc/cspell/dictionary.txt",
"phpstan*"
],
"ignoreRegExpList": [
"^msgstr .*",
"!!binary .*",
"%[0-9][0-9A-F]",
"\\Wi18n",
"\\x{[0-9A-F]{4,5}}"
],
"dictionaries": [
"dictionary",
"drupal",
"companies",
"fonts",
"html",
"php",
"softwareTerms"
],
"dictionaryDefinitions": [
{
"name": "drupal",
"path": "./misc/cspell/drupal-dictionary.txt"
},
{
"name": "dictionary",
"path": "./misc/cspell/dictionary.txt"
}
],
"flagWords": [
"e-mail",
"grey",
"hte",
"ist",
"please",
"queuing",
"writeable"
],
"overrides": [
{
"filename": "**/{*.engine,*.inc,*.install,*.module,*.profile,*.theme}",
"languageId": "php"
},
{
"filename": "**/scripts/{*.php.txt, *.sh}",
"languageId": "php"
}
]
}