20 lines
400 B
JavaScript
20 lines
400 B
JavaScript
/** @type {import('prettier').Config} */
|
|
export default {
|
|
tabWidth: 4,
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
semi: true,
|
|
printWidth: 100,
|
|
bracketSpacing: true,
|
|
arrowParens: 'always',
|
|
endOfLine: 'lf',
|
|
overrides: [
|
|
{
|
|
files: ['*.json', '*.yaml', '*.yml'],
|
|
options: {
|
|
tabWidth: 2,
|
|
},
|
|
},
|
|
],
|
|
};
|