forked from cobeia/airbnb-react-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
{
"name": "airbnb-react-snippets-prettier",
"description":
"ES6 Reactjs code snippets for vscode compliant with Airbnb style guide and prettier",
"version": "1.0.4",
"displayName": "Airbnb react snippets (Prettier)",
"publisher": "EpicCamel2302",
"icon": "images/react.png",
"galleryBanner": {
"theme": "light"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/EpicCamel2302/airbnb-react-snippets"
},
"engines": {
"vscode": "0.10.x"
},
"categories": ["Snippets"],
"keywords": ["React", "Airbnb", "Prettier", "ES6"],
"contributes": {
"snippets": [
{
"language": "javascriptreact",
"path": "./snippets/snippets.json"
},
{
"language": "javascript",
"path": "./snippets/snippets.json"
},
{
"language": "typescript",
"path": "./snippets/snippets.json"
},
{
"language": "typescriptreact",
"path": "./snippets/snippets.json"
}
],
"configuration": {
"title": "airbnb-react-snippets",
"properties": {
"airbnb-react-snippets.useDoubleQuotes": {
"type": "boolean",
"default": "false",
"description": "Use double quotes on strings in place of single quotes"
}
}
}
}
}