stricter-standard
Version:
Stricter JavaScript Standard Style
14 lines (13 loc) • 397 B
JSON
{
"extends": ["standard"],
"rules": {
"arrow-parens": ["error", "as-needed"],
"brace-style": ["error", "1tbs"],
"curly": ["error","all"],
"import/exports-last": ["error"],
"import/order": ["error", {
"alphabetize": { "order": "asc", "caseInsensitive": true },
"groups": ["builtin", "external", "internal", "parent", "sibling", "index", "object"]
}]
}
}