prettier.config.js (14 lines of code) (raw):
module.exports = {
printWidth: 100,
singleQuote: true,
endOfLine: 'auto',
overrides: [
// this must match codesandbox config
{
files: ['examples/codesandbox/**/*.js', 'examples/getting-started/*.js'],
options: {
printWidth: 80,
singleQuote: false,
},
},
],
};