mirror of
https://github.com/screenci/screenci.git
synced 2026-09-19 08:57:46 +08:00
11 lines
176 B
JavaScript
11 lines
176 B
JavaScript
/** @type {import("prettier").Config} */
|
|
const config = {
|
|
semi: false,
|
|
singleQuote: true,
|
|
tabWidth: 2,
|
|
trailingComma: 'es5',
|
|
printWidth: 80,
|
|
}
|
|
|
|
export default config
|