25 lines
547 B
JavaScript
25 lines
547 B
JavaScript
/** @type {import("prettier").Config} */
|
|
module.exports = {
|
|
printWidth: 300,
|
|
tabWidth: 4,
|
|
useTabs: false,
|
|
semi: true,
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
bracketSameLine: true,
|
|
bracketSpacing: true,
|
|
arrowParens: 'always',
|
|
endOfLine: 'auto',
|
|
htmlWhitespaceSensitivity: 'ignore',
|
|
embeddedLanguageFormatting: 'auto',
|
|
|
|
overrides: [
|
|
{
|
|
files: ['games.js', 'tech.js', 'furniture.js'],
|
|
options: {
|
|
printWidth: 100,
|
|
},
|
|
},
|
|
],
|
|
};
|