20 lines
408 B
JavaScript
20 lines
408 B
JavaScript
/**
|
|
* @type {import("prettier").Config}
|
|
* Need to restart IDE when changing configuration
|
|
* Open the command palette (Ctrl + Shift + P) and execute the command > Reload Window.
|
|
*/
|
|
const config = {
|
|
semi: true,
|
|
tabWidth: 2,
|
|
endOfLine: 'lf',
|
|
printWidth: 100,
|
|
singleQuote: true,
|
|
trailingComma: 'es5',
|
|
plugins: [
|
|
//
|
|
'@ianvs/prettier-plugin-sort-imports',
|
|
],
|
|
};
|
|
|
|
export default config;
|