Skip to content

iemanuel/vscode-angular-essentials

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Angular Essentials - Extension Pack for VS Code

This extension pack for Visual Studio Code adds extensions that are amazingly useful for Angular development.

See the CHANGELOG for the latest changes

I am often asked, "What are you favorite VS Code extensions for Angular?". I decided it was time to share them via an extension pack.

Introducing my Angular Essentials extension pack for VS Code. By installing this extension pack you get a set of great extensions that are helpful with Angular development. You can check out the initial list below.

As web tools evolve, the usefulness of extensions come and go. I reserve the right to update the extension pack's contents up to my own discretion.

Recommended Settings

Editor settings

	"editor.codeLens": false,
	"editor.renderWhitespace": "none",
	"editor.autoIndent": true,
	"editor.fontSize": 14,
	"editor.fontFamily": "Inconsolata, Fira code",
	"editor.formatOnPaste": false,
	"editor.formatOnType": true,
	"editor.letterSpacing": 1,
	"editor.tabSize": 2,
	"editor.wordWrap": "off",

File settings

	"files.autoSave": "afterDelay",
	"files.autoSaveDelay": 2000,
	"files.exclude": {
		"**/.git": true,
		"**/.DS_Store": true,
		"**/*.js": {
			"when": "$(basename).ts"
		},
		"**/*.js.map": {
			"when": "$(basename)"
		}
	},
	"files.hotExit": "onExit",
	"files.defaultLanguage": "typescript",
	"files.trimTrailingWhitespace": true,

Prettier settings

  "prettier.singleQuote": true,
	"prettier.printWidth": 100,

Included

Here is the list of extensions the pack includes:

Angular Snippets - Angular snippets that follow the official style guide, for TypeScript, templates, and RxJS.

Angular Language Service - This extension provides a rich editing experience for Angular templates, both inline and external templates. This extension is brought to you by members of the Angular team. It is fantastic at helping write solid code in the html templates.

Editor Config - EditorConfig for VS Code. Great for maintaining consistent editor settings.

tslint - Integrates the tslint linter for the TypeScript language into VS Code. Extremely helpful at detecting and helping fix TypeScript issues.

Chrome Debugger - VS Code debugger for Chrome.

Path Intellisense - Visual Studio Code plugin that autocompletes filenames. Hopefully, VS Code will bake this in at some point. Until then, this is a keeper.

Angular Inline - Visual Studio Code language extension for javascript/typescript files that use Angular2.

Winter is Coming theme

Prettier VS Code plugin for prettier/prettier, which formats code consistently

Material Icon Theme Show material icons in the explorer

Node npm This extension supports running npm scripts defined in the package.json file and validating the installed modules against the dependencies defined in the package.json.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published