Skip to content

Commit

Permalink
style: compress JSON arrays in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
dannysteenman committed Oct 27, 2024
1 parent ebf54fa commit aca98e2
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 37 deletions.
6 changes: 4 additions & 2 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
.gitchangelog.rc
.github/**
.gitignore
.pytest_cache/**
.venv/**
.vscode-test/**
.vscode/**
**/*.ts
azure-pipelines.yml
out/README.md
src/**
vsc-extension-quickstart.md
43 changes: 8 additions & 35 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,8 @@
"color": "#2B2C33",
"theme": "dark"
},
"categories": [
"Snippets"
],
"keywords": [
"aws",
"policy",
"iam",
"actions",
"security"
],
"categories": ["Snippets"],
"keywords": ["aws", "policy", "iam", "actions", "security"],
"badges": [
{
"url": "https://img.shields.io/visual-studio-marketplace/v/dannysteenman.iam-actions-snippets",
Expand All @@ -46,10 +38,7 @@
"description": "Rating"
}
],
"activationEvents": [
"onLanguage:yaml",
"onLanguage:json"
],
"activationEvents": ["onLanguage:yaml", "onLanguage:json"],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
Expand All @@ -65,30 +54,14 @@
"languages": [
{
"id": "json",
"aliases": [
"JSON",
"json"
],
"extensions": [
".json",
".template"
]
"aliases": ["JSON", "json"],
"extensions": [".json", ".template"]
},
{
"id": "yaml",
"aliases": [
"YAML",
"json"
],
"extensions": [
".yaml",
".yml",
".template"
]
"aliases": ["YAML", "json"],
"extensions": [".yaml", ".yml", ".template"]
}
]
},
"extensionDependencies": [
"redhat.vscode-yaml"
]
}
}

0 comments on commit aca98e2

Please sign in to comment.