Skip to content

Commit aca98e2

Browse files
committed
style: compress JSON arrays in package.json
1 parent ebf54fa commit aca98e2

File tree

2 files changed

+12
-37
lines changed

2 files changed

+12
-37
lines changed

.vscodeignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
.gitchangelog.rc
2+
.github/**
23
.gitignore
4+
.pytest_cache/**
5+
.venv/**
36
.vscode-test/**
47
.vscode/**
58
**/*.ts
6-
azure-pipelines.yml
9+
out/README.md
710
src/**
8-
vsc-extension-quickstart.md

package.json

Lines changed: 8 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,8 @@
1919
"color": "#2B2C33",
2020
"theme": "dark"
2121
},
22-
"categories": [
23-
"Snippets"
24-
],
25-
"keywords": [
26-
"aws",
27-
"policy",
28-
"iam",
29-
"actions",
30-
"security"
31-
],
22+
"categories": ["Snippets"],
23+
"keywords": ["aws", "policy", "iam", "actions", "security"],
3224
"badges": [
3325
{
3426
"url": "https://img.shields.io/visual-studio-marketplace/v/dannysteenman.iam-actions-snippets",
@@ -46,10 +38,7 @@
4638
"description": "Rating"
4739
}
4840
],
49-
"activationEvents": [
50-
"onLanguage:yaml",
51-
"onLanguage:json"
52-
],
41+
"activationEvents": ["onLanguage:yaml", "onLanguage:json"],
5342
"main": "./out/extension.js",
5443
"scripts": {
5544
"vscode:prepublish": "npm run compile",
@@ -65,30 +54,14 @@
6554
"languages": [
6655
{
6756
"id": "json",
68-
"aliases": [
69-
"JSON",
70-
"json"
71-
],
72-
"extensions": [
73-
".json",
74-
".template"
75-
]
57+
"aliases": ["JSON", "json"],
58+
"extensions": [".json", ".template"]
7659
},
7760
{
7861
"id": "yaml",
79-
"aliases": [
80-
"YAML",
81-
"json"
82-
],
83-
"extensions": [
84-
".yaml",
85-
".yml",
86-
".template"
87-
]
62+
"aliases": ["YAML", "json"],
63+
"extensions": [".yaml", ".yml", ".template"]
8864
}
8965
]
90-
},
91-
"extensionDependencies": [
92-
"redhat.vscode-yaml"
93-
]
66+
}
9467
}

0 commit comments

Comments
 (0)