This repository has been archived by the owner on May 29, 2023. It is now read-only.
forked from nixel2007/atom-language-1c-bsl
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
76 lines (76 loc) · 2.02 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
{
"name": "language-1c-bsl",
"main": "./lib/language-1c-bsl",
"author": "Nikita Gryzlov <[email protected]>",
"version": "1.6.6",
"description": "Provides syntax highlighting for 1C:Enterprise 8 (1S:Enterprise 8)",
"keywords": [
"grammar",
"syntax",
"1C"
],
"repository": "https://github.com/1c-syntax/atom-language-1c-bsl",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-linter": "^10.0.0",
"atom-package-deps": "^4.3.1"
},
"devDependencies": {
"coffeelint": "^1.16.0"
},
"package-deps": [
"linter"
],
"providedServices": {
"builder": {
"description": "Builds 1C (BSL) files with OneScript",
"versions": {
"2.0.0": "provideBuilder"
}
},
"linter": {
"versions": {
"1.0.0": "provideLinter"
}
}
},
"configSchema": {
"enableOneScriptLinter": {
"title": "Enable linting of files",
"description": "Lint files through `OneScript -check` command",
"type": "boolean",
"default": true,
"order": 10
},
"onescriptPath": {
"title": "OneScript path",
"description": "Full path to oscript binary. Fill this only if oscript is not in your $PATH",
"type": "string",
"default": "",
"order": 15
},
"lintOtherExtensions": {
"title": "Lint non-`*.os` files",
"description": "List of extensions (except `os`) to lint via OneScriptLint. (format - 'bsl,txt')",
"type": "string",
"default": "",
"order": 20
},
"linterEntryPoint": {
"description": "Entry point for OneScriptLinter. Relative path from project root folder",
"type": "string",
"default": "",
"order": 30
},
"forceEnableExtendedUnicodeSupport": {
"title": "Force enable 'Enable extended unicode support'",
"description": "Disable this only if you get errors in autocomplete-plus package with **other** languages",
"type": "boolean",
"default": true,
"order": 40
}
}
}