eslint-plugin-sort-keys
Version:
Fork of eslint rule that sorts keys in objects (https://eslint.org/docs/rules/sort-keys) with autofix enabled
18 lines (17 loc) • 365 B
JavaScript
module.exports = {
printWidth: 80,
tabWidth: 2,
useTabs: false,
semi: false,
singleQuote: true,
quoteProps: 'as-needed',
jsxSingleQuote: true,
trailingComma: 'all',
bracketSpacing: true,
jsxBracketSameLine: false,
arrowParens: 'avoid',
requirePragma: false,
insertPragma: false,
endOfLine: 'lf',
htmlWhitespaceSensitivity: 'ignore',
}