mirror of
https://github.com/MercuryWorkshop/dreamlandjs.git
synced 2025-05-11 21:40:02 -04:00
11 lines
248 B
JavaScript
11 lines
248 B
JavaScript
// prettier.config.js, .prettierrc.js, prettier.config.cjs, or .prettierrc.cjs
|
|
|
|
/** @type {import("prettier").Config} */
|
|
const config = {
|
|
trailingComma: 'es5',
|
|
tabWidth: 4,
|
|
semi: false,
|
|
singleQuote: true,
|
|
}
|
|
|
|
module.exports = config
|