module.exports = { tabWidth: 2, useTabs: false, semi: true, singleQuote: true, jsxSingleQuote: true, // Trailing commas wherever possible (including function arguments). // This requires node 8 or a transform. // https://prettier.io/blog/2020/03/21/2.0.0.html#change-default-value-for-trailingcomma-to-es5-6963httpsgithubcomprettierprettierpull6963-by-fiskerhttpsgithubcomfisker trailingComma: 'all', // https://prettier.io/blog/2020/03/21/2.0.0.html#change-default-value-for-arrowparens-to-always-7430httpsgithubcomprettierprettierpull7430-by-kachkaevhttpsgithubcomkachkaev arrowParens: 'always', // https://prettier.io/blog/2020/03/21/2.0.0.html#change-default-value-for-endofline-to-lf-7435httpsgithubcomprettierprettierpull7435-by-kachkaevhttpsgithubcomkachkaev endOfLine: 'lf', // https://prettier.io/docs/en/configuration.html#setting-the-parserdocsenoptionshtmlparser-option overrides: [ { files: '*.acss', options: { parser: 'css', }, }, ], semi: true, singleQuote: true, jsxSingleQuote: false, };