-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
137 lines (137 loc) · 4.28 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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "linter-yalafi",
"main": "./lib/linter-yalafi",
"version": "0.3.0",
"description": "This package is linting LaTeX files for spelling and grammar errors",
"keywords": [
"latex",
"yalafi",
"languagetool",
"lint",
"linter"
],
"repository": "https://github.com/mfbehrens99/linter-yalafi",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"configSchema": {
"language": {
"type": "string",
"default": "en-GB",
"description": "Specify the language of your LaTeX file. (en-GB, de-DE, fr-FR)",
"order": 1
},
"server": {
"title": "Select LanguageTool instance",
"type": "string",
"default": "lt",
"description": "YaLafi offers different servers that can be used to check your LaTeX files",
"enum": [
{
"value": "lt",
"description": "languagetool.org (Public LanguageTool server)"
},
{
"value": "my",
"description": "localhost (Private LanguageTool server)"
}
],
"order": 2
},
"yalafi": {
"title": "YaLafi Settings",
"collapsed": true,
"type": "object",
"order": 3,
"properties": {
"executablePath": {
"type": "string",
"default": "python",
"description": "Command or full path to python.",
"order": 2
},
"options": {
"type": "array",
"description": "Comma separated list of arguments that are passed to YaLafi. For example `--simple-equations`. If the argument takes a value, you need to place a `=` between argument and value.",
"default": [],
"items": {
"type": "string"
},
"order": 1
}
}
},
"lt": {
"title": "LanguageTool Settings",
"collapsed": true,
"type": "object",
"order": 4,
"properties": {
"disabledRules": {
"title": "Ignored LanguageTool rules",
"type": "string",
"default": "",
"description": "Comma-separated list of LanguageTool rules that should be ignored. If you change this, you may want to add `WHITESPACE_RULE` which is the YaLafi default value.",
"order": 2
},
"serverOptions": {
"title": "LanguageTool server options",
"type": "string",
"default": "",
"description": "Additional options passed to the local LanguageTool server. The path for n-gram data is added automatically if given.",
"order": 4
},
"nGramDataPath": {
"title": "LanguageTool path for n-gram data",
"type": "string",
"default": "",
"description": "Path to n-gram data for the LanguageTool server. For more information about n-gram data visit https://dev.languagetool.org/finding-errors-using-n-gram-data.html and look into the README.",
"order": 3
},
"path": {
"title": "LanguageTool path",
"type": "string",
"default": "",
"description": "Path to LanguageTool directory",
"order": 5
}
}
},
"showContextInLinterMessage": {
"type": "boolean",
"default": "false",
"description": "Show the YaLafi output in the linter message to see if an error is due to the conversion YaLafi has done.",
"order": 5
},
"disableCRLFWarning": {
"title": "Disable CRLF conversion warning",
"type": "boolean",
"default": false,
"description": "It can cause problems if the end of line mode is set to CRLF. To prevent problems linter-YaLafi notifies you and gives you the option to automatically convert from CRLF to LF",
"order": 6
},
"disableTimeout": {
"title": "Disable Execution Timeout",
"type": "boolean",
"default": false,
"description": "By default processes running longer than 30 seconds will be automatically terminated. Enable this option if you are getting messages about process execution timing out.",
"order": 7
}
},
"providedServices": {
"linter": {
"versions": {
"2.0.0": "provideLinter"
}
}
},
"dependencies": {
"atom-linter": "10.0.0",
"atom-package-deps": "5.1.0",
"lazy-req": "2.0.0"
},
"package-deps": [
"linter:2.0.0"
]
}