mirror of
https://github.com/labs42io/clean-code-typescript.git
synced 2025-04-18 15:13:34 +00:00
Include our team preferences in the guide
This commit is contained in:
parent
f28ef813e5
commit
e556af0e90
2 changed files with 1064 additions and 1151 deletions
20
prettier.config.js
Normal file
20
prettier.config.js
Normal file
|
@ -0,0 +1,20 @@
|
|||
module.exports = {
|
||||
arrowParens: 'always',
|
||||
bracketSameLine: true,
|
||||
bracketSpacing: true,
|
||||
embeddedLanguageFormatting: 'auto',
|
||||
endOfLine: 'lf',
|
||||
htmlWhitespaceSensitivity: 'css',
|
||||
insertPragma: false,
|
||||
jsxSingleQuote: false,
|
||||
printWidth: 80,
|
||||
proseWrap: 'preserve',
|
||||
quoteProps: 'as-needed',
|
||||
requirePragma: false,
|
||||
semi: false,
|
||||
singleQuote: true,
|
||||
tabWidth: 2,
|
||||
trailingComma: 'none',
|
||||
useTabs: false,
|
||||
vueIndentScriptAndStyle: false
|
||||
}
|
Loading…
Add table
Reference in a new issue