mirror of
https://github.com/PeWu/topola-viewer.git
synced 2026-07-17 17:21:48 +00:00
18 lines
285 B
JavaScript
18 lines
285 B
JavaScript
const config = {
|
|
bracketSpacing: false,
|
|
endOfLine: 'lf',
|
|
singleQuote: true,
|
|
printWidth: 80,
|
|
plugins: ['prettier-plugin-organize-imports'],
|
|
overrides: [
|
|
{
|
|
files: '*.md',
|
|
options: {
|
|
proseWrap: 'always',
|
|
},
|
|
},
|
|
],
|
|
};
|
|
|
|
export default config;
|