Skip to content

Commit

Permalink
Bug 1341585 - Ignore Visual Studio Code workspace settings and add a …
Browse files Browse the repository at this point in the history
…recommended extensions file. r=gps,jya

MozReview-Commit-ID: 3pI4BSax7dE
  • Loading branch information
mak77 committed Feb 22, 2017
1 parent 91c8e12 commit 2d9f7e2
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -122,3 +122,7 @@ lextab.py

# tup database
/.tup

# Ignore Visual Studio Code workspace files.
.vscode/
!.vscode/extensions.json
4 changes: 3 additions & 1 deletion .hgignore
Original file line number Diff line number Diff line change
Expand Up @@ -137,5 +137,7 @@ GPATH
# tup database
^\.tup

subinclude:servo/.hgignore
# Ignore Visual Studio Code workspace files.
\.vscode/(?!extensions.json$)

subinclude:servo/.hgignore
18 changes: 18 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
// Trim only touched lines.
"NathanRidley.autotrim",
// JS Babel ES6/ES7 syntax hilight.
"dzannotti.vscode-babel-coloring",
// ESLint support.
"dbaeumer.vscode-eslint",
// C/C++ language support.
"ms-vscode.cpptools",
// Rust language support.
"kalitaalexey.vscode-rust",
// CSS support for HTML documents.
"ecmel.vscode-html-css"
]
}

0 comments on commit 2d9f7e2

Please sign in to comment.