any-rule/prettier.config.js
2019-06-25 13:36:59 +08:00

8 lines
164 B
JavaScript

// prettier.config.js or .prettierrc.js
module.exports = {
tabWidth: 4,
semi: true,
singleQuote: true,
arrowParens: 'always',
printWidth: 120
};