-
Notifications
You must be signed in to change notification settings - Fork 1
eslint
sam bacha edited this page Jun 10, 2022
·
1 revision
{
"plugins": ["prettier"],
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"trailingComma": "always"
}
],
"max-len": [2, 130, 4],
"no-param-reassign": [
2,
{
"props": false
}
],
"no-plusplus": 0,
"no-underscore-dangle": 0,
"prefer-rest-params": 0,
"comma-dangle": [2,
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "never"
}
]
}
}