forked from atom/spell-check
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.61 KB
/
package.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
{
"name": "spell-check",
"version": "0.72.0",
"main": "./lib/main",
"description": "Highlights misspelled words and shows possible corrections.",
"dependencies": {
"atom-select-list": "^0.1.0",
"multi-integer-range": "^2.0.0",
"natural": "^0.4.0",
"spellchecker": "3.4.1",
"spelling-manager": "0.3.0",
"underscore-plus": "^1"
},
"repository": "https://github.com/atom/spell-check",
"license": "MIT",
"engines": {
"atom": "*"
},
"configSchema": {
"grammars": {
"type": "array",
"default": [
"source.asciidoc",
"source.gfm",
"text.git-commit",
"text.plain",
"text.plain.null-grammar"
],
"description": "List of scopes for languages which will be checked for misspellings. See [the README](https://github.com/atom/spell-check#spell-check-package-) for more information on finding the correct scope for a specific language.",
"order": "1"
},
"useLocales": {
"type": "boolean",
"default": "true",
"description": "If unchecked, then the locales below will not be used for spell-checking and no spell-checking using system dictionaries will be provided.",
"order": "2"
},
"locales": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "List of locales to use for the system spell-checking. Examples would be `en-US` or `de-DE`. For Windows, the appropriate language must be installed using *Region and language settings*. If this is blank, then the default language for the user will be used.",
"order": 3
},
"localePaths": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "List of additional paths to search for dictionary files. If a locale cannot be found in these, the internal code will attempt to find it using common search paths. This is used for Linux and OS X.",
"order": 4
},
"knownWords": {
"type": "array",
"default": [],
"description": "List words that are considered correct even if they do not appear in any other dictionary. Words with capitals or ones that start with `!` are case-sensitive.",
"order": 5
},
"addKnownWords": {
"type": "boolean",
"default": false,
"description": "If checked, then the suggestions will include options to add to the known words list above.",
"order": 6
}
},
"devDependencies": {
"coffeelint": "^1.9.7"
},
"consumedServices": {
"spell-check": {
"versions": {
"^1.0.0": "consumeSpellCheckers"
}
}
}
}