-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Bryan Hoekstra
committed
Dec 17, 2015
1 parent
0763e64
commit d296605
Showing
4 changed files
with
77 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
{ | ||
"compilerOptions": { | ||
"target": "ES6", | ||
"noLib": true | ||
}, | ||
"exclude": [ | ||
"node_modules" | ||
] | ||
"compilerOptions": { | ||
"target": "ES6", | ||
"noLib": true | ||
}, | ||
"exclude": [ | ||
"node_modules" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,54 @@ | ||
{ | ||
"name": "beautify", | ||
"displayName": "beautify", | ||
"description": "Beautify code in place for VS Code", | ||
"version": "0.0.1", | ||
"publisher": "HookyQR", | ||
"engines": { | ||
"vscode": "^0.10.1" | ||
}, | ||
"categories": [ | ||
"Other" | ||
], | ||
"activationEvents": [ | ||
"onCommand:HookyQR.beautify" | ||
], | ||
"main": "./extension", | ||
"contributes": { | ||
"commands": [ | ||
{ | ||
"command": "HookyQR.beautify", | ||
"title": "Beautify" | ||
} | ||
] | ||
}, | ||
"devDependencies": { | ||
"vscode": "0.10.x" | ||
}, | ||
"dependencies": { | ||
"js-beautify": "^1.5.0" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/HookyQR/VSCodeBeautify" | ||
} | ||
"name": "beautify", | ||
"displayName": "beautify", | ||
"description": "Beautify code in place for VS Code", | ||
"version": "0.0.2", | ||
"publisher": "HookyQR", | ||
"engines": { | ||
"vscode": "^0.10.1" | ||
}, | ||
"categories": [ | ||
"Other" | ||
], | ||
"activationEvents": [ | ||
"onCommand:HookyQR.beautify" | ||
], | ||
"main": "./extension", | ||
"contributes": { | ||
"commands": [{ | ||
"command": "HookyQR.beautify", | ||
"title": "Beautify" | ||
}], | ||
"configuration": { | ||
"type": "object", | ||
"title": "Beautify config", | ||
"properties": { | ||
"beautify.JSfiles": { | ||
"type": "array", | ||
"default": ["js","json","jsbeautifyrc","jshintrc"], | ||
"description": "File extensions that can be minified as javascript or JSON." | ||
}, | ||
"beautify.HTMLfiles": { | ||
"type": "array", | ||
"default": ["htm","html"], | ||
"description": "File extensions that can be minified as HTML." | ||
}, | ||
"beautify.CSSfiles": { | ||
"type": "array", | ||
"default": ["css"], | ||
"description": "File extensions that can be minified as CSS." | ||
} | ||
} | ||
} | ||
}, | ||
"devDependencies": { | ||
"vscode": "0.10.x" | ||
}, | ||
"dependencies": { | ||
"js-beautify": "^1.5.0" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/HookyQR/VSCodeBeautify" | ||
} | ||
} |