forked from steelbrain/linter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.31 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
{
"name": "linter",
"main": "./lib/index.js",
"author": "steelbrain",
"readme": "./README.md",
"version": "2.3.0",
"description": "A Base Linter with Cow Powers",
"repository": "https://github.com/steelbrain/linter",
"license": "MIT",
"keywords": [
"linter",
"base linter"
],
"private": true,
"scripts": {
"test": "apm test",
"lint": "(flow check) && (eslint . ) && (prettier --list-different lib/*.js)"
},
"engines": {
"atom": ">=1.14.0 <2.0.0"
},
"consumedServices": {
"linter": {
"versions": {
"2.0.0": "consumeLinter"
}
},
"linter-ui": {
"versions": {
"1.0.0": "consumeUI"
}
}
},
"providedServices": {
"linter-indie": {
"versions": {
"2.0.0": "provideIndie"
}
}
},
"dependencies": {
"atom-package-deps": "^5.0.0",
"atom-select-list": "^0.7.2",
"lodash": "^4.17.11",
"minimatch": "^3.0.3"
},
"devDependencies": {
"eslint-config-steelbrain": "^7.0.0",
"flow-bin": "^0.98.0",
"jasmine-fix": "^1.3.1"
},
"package-deps": [
"linter-ui-default"
],
"configSchema": {
"lintPreviewTabs": {
"type": "boolean",
"description": "Lint tabs while they are still in preview status",
"default": true,
"order": 1
},
"lintOnOpen": {
"title": "Lint on Open",
"description": "Lint files automatically when they are opened",
"type": "boolean",
"default": true,
"order": 2
},
"lintOnChange": {
"title": "Lint on Change",
"description": "Lint files while typing, without the need to save (only for supported providers)",
"type": "boolean",
"default": true,
"order": 3
},
"lintOnChangeInterval": {
"title": "Lint on Change Interval",
"description": "Interval at which linting is done as you type (in ms)",
"type": "integer",
"default": 300,
"order": 4
},
"ignoreGlob": {
"title": "Ignore files matching this Glob",
"type": "string",
"default": "**/*.min.{js,css}",
"order": 5
},
"disabledProviders": {
"title": "Disabled providers",
"type": "array",
"items": {
"type": "string"
},
"description": "Names of disabled linter providers",
"default": [],
"order": 6
}
}
}