Skip to content

Commit

Permalink
Merge pull request #3849 from ehte92/ehte92-card
Browse files Browse the repository at this point in the history
updated prettier config to resolve jsxBracketSameLine deprecated
  • Loading branch information
TenTraicion committed Aug 28, 2024
2 parents b70810f + 2489186 commit 253da0e
Showing 1 changed file with 2 additions and 16 deletions.
18 changes: 2 additions & 16 deletions prettier.config.js
Original file line number Diff line number Diff line change
@@ -1,33 +1,19 @@
module.exports = {
arrowParens: 'avoid',

bracketSpacing: true,

endOfLine: 'lf',

htmlWhitespaceSensitivity: 'ignore',

insertPragma: false,

jsxBracketSameLine: false,

// jsxBracketSameLine: false, // Deprecated
bracketSameLine: false, // Updated to this
jsxSingleQuote: false,

printWidth: 120,

proseWrap: 'preserve',

quoteProps: 'as-needed',

requirePragma: false,

semi: false,

singleQuote: true,

tabWidth: 2,

trailingComma: 'es5',

useTabs: false,
}

0 comments on commit 253da0e

Please sign in to comment.