mirror of
https://github.com/openglobus/openglobus.git
synced 2025-12-08 19:25:27 +00:00
19 lines
410 B
JavaScript
19 lines
410 B
JavaScript
module.exports = {
|
|
printWidth: 100,
|
|
tabWidth: 4,
|
|
useTabs: false,
|
|
semi: true,
|
|
singleQuote: false,
|
|
quoteProps: "as-needed",
|
|
trailingComma: "none",
|
|
bracketSpacing: true,
|
|
arrowParens: "always",
|
|
rangeStart: 0,
|
|
rangeEnd: Infinity,
|
|
requirePragma: false,
|
|
insertPragma: false,
|
|
proseWrap: "preserve",
|
|
htmlWhitespaceSensitivity: "css",
|
|
endOfLine: "auto"
|
|
};
|