@iflow/eslint-config
Version:
ESLint Configuration
29 lines (28 loc) • 868 B
JavaScript
module.exports = {
rules: {
"prettier/prettier": [
"warn",
{
printWidth: 120,
tabWidth: 4,
useTabs: false,
semi: true,
singleQuote: false,
quoteProps: "consistent",
jsxSingleQuote: false,
trailingComma: "none",
bracketSpacing: true,
bracketSameLine: false,
arrowParens: "avoid",
proseWrap: "preserve",
htmlWhitespaceSensitivity: "css",
vueIndentScriptAndStyle: false,
endOfLine: "auto",
embeddedLanguageFormatting: "auto",
singleAttributePerLine: true
}
],
"arrow-body-style": "off",
"prefer-arrow-callback": "off"
}
};