Skip to content

Commit

Permalink
Update options based on team concensus
Browse files Browse the repository at this point in the history
  • Loading branch information
ltm committed Aug 4, 2021
1 parent f5a897f commit de3c037
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
module.exports = {
arrowParens: 'avoid',
printWidth: 120, // default: 80
tabWidth: 2,
useTabs: false,
semi: true,
singleQuote: true, // default: false
quoteProps: 'as-needed',
jsxSingleQuote: false,
trailingComma: 'es5',
bracketSpacing: true,
jsxBracketSameLine: false,
jsxSingleQuote: false,
quoteProps: 'consistent',
semi: true,
singleQuote: true,
tabWidth: 2,
trailingComma: 'all',
arrowParens: 'always',
overrides: [
{
files: ['*.java'],
Expand Down

0 comments on commit de3c037

Please sign in to comment.