mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-08 05:58:36 +00:00
As per the guidelines: https://github.com/SharePoint/sp-dev-fx-webparts/blob/master/.github/CONTRIBUTING.md
22 lines
553 B
JSON
22 lines
553 B
JSON
{
|
|
// The number of spaces a tab is equal to.
|
|
"editor.tabSize": 2,
|
|
|
|
// When enabled, will trim trailing whitespace when you save a file.
|
|
"files.trimTrailingWhitespace": true,
|
|
|
|
// Controls if the editor should automatically close brackets after opening them
|
|
"editor.autoClosingBrackets": false,
|
|
|
|
// Configure glob patterns for excluding files and folders.
|
|
"search.exclude": {
|
|
"**/bower_components": true,
|
|
"**/node_modules": true,
|
|
"coverage": true,
|
|
"dist": true,
|
|
"lib-amd": true,
|
|
"lib": true,
|
|
"temp": true
|
|
}
|
|
}
|