mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-12 23:35:50 +00:00
15 lines
281 B
JavaScript
15 lines
281 B
JavaScript
module.exports = {
|
|
printWidth: 100,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: false,
|
|
singleQuote: true,
|
|
quoteProps: "as-needed",
|
|
jsxSingleQuote: true,
|
|
trailingComma: "all",
|
|
bracketSpacing: true,
|
|
bracketSameLine: false,
|
|
arrowParens: "always",
|
|
endOfLine: "auto",
|
|
};
|