mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-22 11:02:11 +03:00
16 lines
347 B
JavaScript
16 lines
347 B
JavaScript
/**
|
|
* @see https://prettier.io/docs/en/configuration.html
|
|
* @type {import("prettier").Config}
|
|
*/
|
|
const config = {
|
|
useTabs: true,
|
|
singleQuote: true,
|
|
trailingComma: 'none',
|
|
printWidth: 100,
|
|
plugins: ['prettier-plugin-svelte'],
|
|
overrides: [{ files: '*.svelte', options: { parser: 'svelte' } }],
|
|
endOfLine: 'auto'
|
|
};
|
|
|
|
export default config;
|