18 lines
348 B
JavaScript
18 lines
348 B
JavaScript
// https://prettier.io/docs/en/options.html
|
|
/** @type {import('prettier').RequiredOptions} */
|
|
module.exports = {
|
|
trailingComma: 'es5',
|
|
bracketSpacing: true,
|
|
tabWidth: 2,
|
|
semi: false,
|
|
singleQuote: true,
|
|
arrowParens: 'always',
|
|
overrides: [
|
|
{
|
|
files: 'Routes.*',
|
|
options: {
|
|
printWidth: 999,
|
|
},
|
|
},
|
|
],
|
|
}
|