mirror of
https://github.com/D00Movenok/HTMLSmuggler
synced 2026-06-08 10:49:16 +00:00
17 lines
350 B
JavaScript
17 lines
350 B
JavaScript
module.exports = {
|
|
printWidth: 80,
|
|
tabWidth: 2,
|
|
useTabs: false,
|
|
semi: true,
|
|
singleQuote: true,
|
|
quoteProps: "as-needed",
|
|
trailingComma: "all",
|
|
bracketSpacing: true,
|
|
bracketSameLine: false,
|
|
arrowParens: "always",
|
|
proseWrap: "preserve",
|
|
htmlWhitespaceSensitivity: "strict",
|
|
vueIndentScriptAndStyle: true,
|
|
endOfLine: "lf",
|
|
};
|