Files
Nexior/.prettierrc.js
T
2022-04-04 16:11:01 +08:00

17 lines
251 B
JavaScript

module.exports = {
trailingComma: 'none',
tabWidth: 2,
singleQuote: true,
printWidth: 120,
endOfLine: 'auto',
overrides: [
{
files: '*.json',
options: {
printWidth: 200
}
}
],
arrowParens: 'always'
};