16 lines
237 B
JavaScript
16 lines
237 B
JavaScript
|
// @ts-check
|
||
|
|
||
|
/**
|
||
|
* @type {import('./types').PrettierConfig}
|
||
|
*/
|
||
|
const config = {
|
||
|
singleQuote: true,
|
||
|
arrowParens: 'always',
|
||
|
semi: false,
|
||
|
bracketSpacing: true,
|
||
|
trailingComma: 'es5',
|
||
|
printWidth: 80,
|
||
|
}
|
||
|
|
||
|
module.exports = config
|