-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
93 lines (93 loc) · 2.89 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
{
"name": "haxe-checkstyle",
"displayName": "Haxe Checkstyle",
"version": "1.8.3",
"publisher": "vshaxe",
"engines": {
"vscode": "^1.20.0"
},
"extensionDependencies": [
"nadako.vshaxe"
],
"license": "MIT",
"description": "Linter for Haxe files",
"categories": [
"Linters"
],
"galleryBanner": {
"theme": "dark",
"color": "#A84B38"
},
"badges": [
{
"url": "https://api.travis-ci.org/vshaxe/vscode-checkstyle.svg?branch=master",
"href": "https://travis-ci.org/vshaxe/vscode-checkstyle",
"description": "Travis CI Status"
}
],
"devDependencies": {
"lix": "^15.12.0"
},
"icon": "logo.png",
"keywords": [
"haxe"
],
"bugs": "https://github.com/vshaxe/vscode-checkstyle/issues",
"repository": {
"type": "git",
"url": "https://github.com/vshaxe/vscode-checkstyle"
},
"main": "bin/main.js",
"contributes": {
"configuration": {
"title": "Haxe Checkstyle",
"properties": {
"haxecheckstyle.configurationFile": {
"type": "string",
"default": "",
"markdownDescription": "Configuration file for the code style check"
},
"haxecheckstyle.sourceFolders": {
"type": "array",
"default": [
"src",
"Source"
],
"markdownDescription": "Source folders for code style check"
},
"haxecheckstyle.externalSourceRoots": {
"type": "array",
"default": [],
"markdownDescription": "Enable checkstyle in source folders outside of your current workspace - `\"haxecheckstyle.sourceFolders\"` still applies"
},
"haxecheckstyle.codeSimilarityBufferSize": {
"type": "integer",
"default": 100,
"markdownDescription": "max number of files to keep in memory for CodeSimilarity check"
}
}
},
"jsonValidation": [
{
"fileMatch": "checkstyle.json",
"url": "./resources/checkstyle-schema.json"
},
{
"fileMatch": "checkstyle-excludes.json",
"url": "./resources/checkstyle-excludes-schema.json"
}
]
},
"activationEvents": [
"onLanguage:haxe"
],
"scripts": {
"vscode:prepublish": "haxe build.hxml",
"postinstall": "lix download"
},
"__metadata": {
"id": "113ab80b-c5a1-47db-85f2-ee8691688408",
"publisherDisplayName": "Haxe Foundation",
"publisherId": "bdf58939-bf37-40d4-9543-90fcc14fd490"
}
}