14 lines
296 B
JavaScript
14 lines
296 B
JavaScript
|
|
// Prettier configuration
|
||
|
|
// This file can be referenced from root via --config flag if needed
|
||
|
|
module.exports = {
|
||
|
|
semi: true,
|
||
|
|
trailingComma: "es5",
|
||
|
|
singleQuote: false,
|
||
|
|
printWidth: 100,
|
||
|
|
tabWidth: 2,
|
||
|
|
useTabs: false,
|
||
|
|
bracketSpacing: true,
|
||
|
|
arrowParens: "avoid",
|
||
|
|
endOfLine: "lf",
|
||
|
|
};
|