whashammer / .eslintrc.json
Germinal's picture
Upload 14 files
44fba65
raw
history blame contribute delete
584 Bytes
{
"env": {
"node": true
},
"extends": ["xo", "prettier"],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"rules": {
"prettier/prettier": "error",
"one-var": "off",
"max-params": ["error", 5],
"arrow-body-style": ["error", "always"],
"radix": "off",
"no-unused-expressions": ["error", { "allowTernary": true }],
"curly": "error",
"new-cap": "off",
"no-return-assign": "off",
"no-await-in-loop": "off"
},
"plugins": ["prettier"]
}