-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·48 lines (48 loc) · 1.59 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
{
"name": "vscode-idiomatic-css-comments",
"displayName": "VS Code Idiomatic CSS Comments",
"description": "CSS and Sass style comments for Visual Studio Code based on Nicolas Gallagher's Idiomatic CSS principles",
"version": "0.1.2",
"publisher": "ryanbelisle",
"engines": {
"vscode": "^1.0.0"
},
"homepage": "https://github.com/ryanbelisle/vscode-idiomatic-css-comments",
"repository": {
"type": "git",
"url": "https://github.com/ryanbelisle/vscode-idiomatic-css-comments.git"
},
"bugs": "https://github.com/ryanbelisle/vscode-idiomatic-css-comments/issues",
"categories": [
"Snippets"
],
"icon": "",
"contributes": {
"snippets": [
{
"language": "css",
"path": "./snippets/vscode-idiomatic-css-comments.code-snippets"
},
{
"language": "less",
"path": "./snippets/vscode-idiomatic-css-comments.code-snippets"
},
{
"language": "scss",
"path": "./snippets/vscode-idiomatic-css-comments.code-snippets"
},
{
"language": "html",
"path": "./snippets/vscode-idiomatic-css-comments.code-snippets"
},
{
"language": "jsx",
"path": "./snippets/vscode-idiomatic-css-comments.code-snippets"
},
{
"language": "javascript",
"path": "./snippets/vscode-idiomatic-css-comments.code-snippets"
}
]
}
}