chore: move prettier config to separate file

This commit is contained in:
Zack Schuster 2020-05-01 11:22:37 -07:00
parent 9376d378da
commit b6723b4dff
2 changed files with 5 additions and 5 deletions

View File

@ -78,10 +78,5 @@
"environmentVariables": {
"NODE_TLS_REJECT_UNAUTHORIZED": "0"
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"useTabs": true
}
}

5
prettier.config.js Normal file
View File

@ -0,0 +1,5 @@
module.exports = {
singleQuote: true,
trailingComma: 'es5',
useTabs: true,
};