Repository: solodynamo/frontend-vscode-extensionpack Branch: master Commit: c22030268941 Files: 4 Total size: 5.1 KB Directory structure: gitextract_e_cxravk/ ├── .gitignore ├── LICENSE ├── README.md └── package.json ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ .vscode *.vsix ### OSX ### *.DS_Store .AppleDouble .LSOverride ================================================ FILE: LICENSE ================================================ MIT License Copyright (c) 2018 Solodynamo Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ================================================ FILE: README.md ================================================


Frontend VSCode Extension Pack


# Frontend VSCode Extension Pack A collection of extensions for Frontend Development in VS Code. These are some of my favorite extensions to make frontend development easier and fun. ## Links * Find this Extension Pack on the [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=solodynamo.frontend-vscode-extensionpack) * Find this Extension Pack on [GitHub](https://github.com/solodynamo/frontend-vscode-extensionpack) ## Extensions Included * [Auto Close Tag](https://marketplace.visualstudio.com/items?itemName=formulahendry.auto-close-tag) * [Auto Comment Blocks](https://marketplace.visualstudio.com/items?itemName=kevinkyang.auto-comment-blocks) * [Color Highlight](https://marketplace.visualstudio.com/items?itemName=naumovs.color-highlight) * [Debugger For Chrome](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome) * [ES Lint](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) * [TS Lint](https://marketplace.visualstudio.com/items?itemName=eg2.tslint) * [Flow Language Support](https://marketplace.visualstudio.com/items?itemName=flowtype.flow-for-vscode) * [NPM Intellisense](https://marketplace.visualstudio.com/items?itemName=christian-kohler.npm-intellisense) * [Import Cost](https://marketplace.visualstudio.com/items?itemName=wix.vscode-import-cost) * [Indent Rainbow](https://marketplace.visualstudio.com/items?itemName=oderwat.indent-rainbow) * [Beautify](https://marketplace.visualstudio.com/items?itemName=HookyQR.beautify) * [Intellisense For CSS Class Names](https://marketplace.visualstudio.com/items?itemName=Zignd.html-css-class-completion) * [Path Intellisense](https://marketplace.visualstudio.com/items?itemName=christian-kohler.path-intellisense) * [Prettier](https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode) * [Bracket Pair Colorizer](https://marketplace.visualstudio.com/items?itemName=CoenraadS.bracket-pair-colorizer) * [Style Lint](https://marketplace.visualstudio.com/items?itemName=shinnn.stylelint) * [VS Code Flow IDE](https://marketplace.visualstudio.com/items?itemName=gcazaciuc.vscode-flow-ide) * [Document This](https://marketplace.visualstudio.com/items?itemName=joelday.docthis) * [Regex Previewer](https://marketplace.visualstudio.com/items?itemName=chrmarti.regex) ## Want to see your extension added? Open a PR and I'd be happy to take a look. ================================================ FILE: package.json ================================================ { "name": "frontend-vscode-extensionpack", "publisher": "solodynamo", "version": "0.0.4", "description": "Collection of essential vscode extension for front-end development", "repository": { "type": "git", "url": "git+https://github.com/solodynamo/frontend-vscode-extensionpack.git" }, "keywords": [ "frontend", "vscode", "extension", "buildpack" ], "displayName": "Frontend VS Code Extension Pack", "galleryBanner": { "color": "#4F86C6", "theme": "dark" }, "icon": "logo.png", "categories": ["Extension Packs"], "engines": { "vscode": "^1.14.0" }, "extensionDependencies": [ "formulahendry.auto-close-tag", "kevinkyang.auto-comment-blocks", "naumovs.color-highlight", "msjsdiag.debugger-for-chrome", "dbaeumer.vscode-eslint", "flowtype.flow-for-vscode", "eg2.tslint", "wix.vscode-import-cost", "oderwat.indent-rainbow", "HookyQR.beautify", "Zignd.html-css-class-completion", "christian-kohler.npm-intellisense", "christian-kohler.path-intellisense", "esbenp.prettier-vscode", "CoenraadS.bracket-pair-colorizer", "shinnn.stylelint", "gcazaciuc.vscode-flow-ide", "joelday.docthis", "chrmarti.regex" ], "license": "MIT", "bugs": { "url": "https://github.com/solodynamo/frontend-vscode-extensionpack/issues" }, "homepage": "https://github.com/solodynamo/frontend-vscode-extensionpack#readme" }