mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
11 lines
200 B
JavaScript
11 lines
200 B
JavaScript
/** @type {import('prettier').Config} */
|
|
module.exports = {
|
|
semi: true,
|
|
singleQuote: true,
|
|
trailingComma: 'all',
|
|
printWidth: 100,
|
|
tabWidth: 2,
|
|
arrowParens: 'always',
|
|
endOfLine: 'lf',
|
|
};
|