just/prettier.config.js

16 строки
232 B
JavaScript
Исходник Обычный вид История

module.exports = {
2022-09-09 05:59:00 +03:00
printWidth: 120,
tabWidth: 2,
singleQuote: true,
trailingComma: 'all',
arrowParens: 'avoid',
2022-09-09 03:14:23 +03:00
overrides: [
{
files: '*.json5',
options: {
parser: 'json',
},
},
],
};