forked from hex-ci/vscode-stylelint-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
159 lines (159 loc) · 4.18 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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "stylelint-mixins",
"version": "0.2.0",
"displayName": "stylelint-mixins",
"description": "Modern CSS/SCSS/Less linter for vscode, support multiple options.",
"publisher": "hisanshao",
"repository": "https://github.com/hisanshao/vscode-stylelint-mixins",
"homepage": "https://github.com/hisanshao/vscode-stylelint-mixins#readme",
"bugs": "https://github.com/hisanshao/vscode-stylelint-mixins/issues",
"license": "ISC",
"icon": "media/icon.png",
"galleryBanner": {
"color": "#32CD32",
"theme": "light"
},
"engines": {
"vscode": ">=1.35.0"
},
"categories": [
"Linters"
],
"keywords": [
"lint",
"style",
"stylelint",
"validation",
"check"
],
"activationEvents": [
"onLanguage:css",
"onLanguage:html",
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:less",
"onLanguage:markdown",
"onLanguage:postcss",
"onLanguage:sass",
"onLanguage:scss",
"onLanguage:source.css.styled",
"onLanguage:source.markdown.math",
"onLanguage:styled-css",
"onLanguage:sugarss",
"onLanguage:svelte",
"onLanguage:typescript",
"onLanguage:typescriptreact",
"onLanguage:vue",
"onLanguage:vue-html",
"onLanguage:vue-postcss",
"onLanguage:xml",
"onLanguage:xsl"
],
"main": "index.js",
"contributes": {
"configuration": {
"type": "object",
"title": "stylelint+ configuration options",
"properties": {
"stylelint.enable": {
"type": "boolean",
"default": true,
"description": "Control whether stylelint is enabled for CSS/SCSS/Less files or not."
},
"stylelint.config": {
"type": [
"object",
"null"
],
"default": null,
"description": "A stylelint configuration object."
},
"stylelint.configOverrides": {
"type": [
"object",
"null"
],
"default": null,
"description": "A partial stylelint config whose properties override the existing ones."
},
"stylelint.autoFixOnSave": {
"type": "boolean",
"default": false,
"description": "Turns auto fix on save on or off."
},
"stylelint.configFile": {
"type": [
"string",
"null"
],
"default": null,
"description": "A stylelint configuration object."
},
"stylelint.configBasedir": {
"type": [
"string",
"null"
],
"default": null,
"description": "A stylelint configuration object."
},
"stylelint.ignorePath": {
"type": [
"string",
"null"
],
"default": null,
"description": "A stylelint configuration object."
},
"stylelint.ignoreDisables": {
"type": "boolean",
"default": false,
"description": "If true, all disable comments (e.g. /* stylelint-disable block-no-empty */) will be ignored."
},
"stylelint.allowEmptyInput": {
"type": "boolean",
"default": false,
"description": "Control whether stylelint file can be empty or not."
}
}
},
"jsonValidation": [
{
"fileMatch": "**/.stylelintrc*",
"url": "http://json.schemastore.org/stylelintrc.json"
}
],
"languages": [
{
"id": "ignore",
"filenames": [
".stylelintignore"
]
}
]
},
"scripts": {
"pretest": "eslint .",
"test": "node node_modules/vscode/bin/test"
},
"dependencies": {
"find-pkg-dir": "^2.0.0",
"path-is-inside": "^1.0.2",
"vscode-languageclient": "^5.2.1",
"vscode-languageserver": "^5.2.1",
"vscode-uri": "^2.0.1",
"array-to-error": "^1.1.1",
"array-to-sentence": "^2.0.0",
"inspect-with-kind": "^1.0.5",
"lodash": "^4.17.15",
"stylelint": "^10.1.0",
"stylelint-warning-to-vscode-diagnostic": "^1.0.1"
},
"devDependencies": {
"eslint": "^5.16.0",
"p-wait-for": "^3.1.0",
"tape": "^4.10.2",
"vscode": "^1.1.34",
"coverage": "^0.1.5"
}
}