mirror of
https://github.com/tenrok/vue-cron-editor-bootstrap.git
synced 2026-06-11 18:12:27 +03:00
13 lines
242 B
JavaScript
13 lines
242 B
JavaScript
// https://prettier.io/docs/en/options.html
|
|
|
|
/** @type {import("prettier").Config} */
|
|
const config = {
|
|
arrowParens: 'avoid',
|
|
printWidth: 180,
|
|
semi: false,
|
|
singleQuote: true,
|
|
vueIndentScriptAndStyle: true,
|
|
}
|
|
|
|
module.exports = config
|