mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-17 16:50:22 +00:00
16 lines
297 B
JavaScript
16 lines
297 B
JavaScript
/** @type {import("prettier").Config} */
|
|
module.exports = {
|
|
proseWrap: 'always',
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
semi: false,
|
|
experimentalTernaries: true,
|
|
overrides: [
|
|
{
|
|
files: 'packages/@uppy/angular/**',
|
|
options: {
|
|
semi: true,
|
|
},
|
|
},
|
|
],
|
|
}
|