mirror of
https://github.com/tenrok/vue-ganttastic.git
synced 2026-05-17 03:59:36 +03:00
13 lines
226 B
JavaScript
13 lines
226 B
JavaScript
// https://prettier.io/docs/en/options.html
|
|
|
|
module.exports = {
|
|
arrowParens: 'avoid',
|
|
bracketSpacing: true,
|
|
printWidth: 120,
|
|
semi: false,
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
trailingComma: 'none',
|
|
useTabs: false
|
|
}
|