any-rule/prettier.config.js

8 lines
164 B
JavaScript
Raw Normal View History

2019-06-25 13:30:32 +08:00
// prettier.config.js or .prettierrc.js
module.exports = {
tabWidth: 4,
semi: true,
singleQuote: true,
arrowParens: 'always',
printWidth: 120
};