forked from Floorp-Projects/Floorp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1341585 - Ignore Visual Studio Code workspace settings and add a …
…recommended extensions file. r=gps,jya MozReview-Commit-ID: 3pI4BSax7dE
- Loading branch information
Showing
3 changed files
with
25 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -122,3 +122,7 @@ lextab.py | |
|
||
# tup database | ||
/.tup | ||
|
||
# Ignore Visual Studio Code workspace files. | ||
.vscode/ | ||
!.vscode/extensions.json |
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 |
---|---|---|
@@ -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" | ||
] | ||
} |