20 lines
383 B
JavaScript
20 lines
383 B
JavaScript
module.exports = {
|
|
printWidth: 100,
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
overrides: [
|
|
{
|
|
files: ['docs/**/*.md', 'docs/src/pages/**/*.{js,tsx}', 'docs/data/**/*.{js,tsx}'],
|
|
options: {
|
|
printWidth: 85,
|
|
},
|
|
},
|
|
{
|
|
files: ['docs/pages/blog/**/*.md'],
|
|
options: {
|
|
printWidth: 82,
|
|
},
|
|
},
|
|
],
|
|
};
|