mirror of
https://github.com/tenrok/vue-cron-editor-bootstrap.git
synced 2026-06-17 19:30:34 +03:00
9 lines
355 B
JavaScript
9 lines
355 B
JavaScript
// https://prettier.io/docs/en/options.html
|
|
|
|
module.exports = {
|
|
arrowParens: 'avoid', // Include parentheses around a sole arrow function parameter
|
|
printWidth: 120, // Specify the line length that the printer will wrap on
|
|
semi: false, // Print semicolons at the ends of statements
|
|
singleQuote: true // Use single quotes instead of double quotes
|
|
}
|