Remove Prettier settings from .vscode/settings.json

This commit is contained in:
Martijn Walraven 2018-09-01 11:54:46 +02:00
parent b9876b75bf
commit a7301080b7

10
.vscode/settings.json vendored
View file

@ -1,13 +1,11 @@
// Place your settings in this file to overwrite default and user settings.
{
"editor.tabSize": 2,
"editor.rulers": [110],
"editor.rulers": [80],
"editor.wordWrapColumn": 80,
"editor.formatOnSave": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"editor.wordWrapColumn": 110,
"editor.formatOnSave": true,
"prettier.singleQuote": true,
"prettier.printWidth": 110,
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
@ -16,5 +14,5 @@
"coverage": true,
"coverage.lcov": true
},
"typescript.tsdk": "node_modules/typescript/lib"
"typescript.tsdk": "./node_modules/typescript/lib"
}