Skip to content

Commit

Permalink
Merge pull request #524 from stripe/ob-vscode
Browse files Browse the repository at this point in the history
VSCode settings
  • Loading branch information
ob-stripe authored Sep 22, 2018
2 parents df73bb3 + 2883825 commit 1957f7c
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"recommendations": [
"felixfbecker.php-intellisense",
"ikappas.phpcs",
"emallin.phpunit"
]
}
18 changes: 18 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"editor.renderWhitespace": "all",
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"[php]": {
"editor.detectIndentation": false,
"editor.insertSpaces": true,
"editor.rulers": [
100
],
"editor.tabSize": 4,
},

// Linting
"phpcs.enable": true,
"phpcs.standard": "PSR2"
}

0 comments on commit 1957f7c

Please sign in to comment.