Include our team preferences in the guide

This commit is contained in:
Chris Jaynes 2023-07-14 15:21:07 -05:00
parent f28ef813e5
commit e556af0e90
2 changed files with 1064 additions and 1151 deletions

2195
README.md

File diff suppressed because it is too large Load diff

20
prettier.config.js Normal file
View 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
}