wayfarer/.eslintrc

32 lines
652 B
Plaintext
Raw Permalink Normal View History

{
"extends": "standard",
"parserOptions": {
"ecmaFeatures": {
"jsx": false
},
"ecmaVersion": 2022,
"sourceType": "module"
},
"rules": {
"indent": "off",
"no-throw-literal": "off",
"no-undef": "off",
"new-cap": "off",
"space-before-function-paren": [
"error",
{
"anonymous": "always",
"named": "never",
"asyncArrow": "ignore"
}
],
"no-multiple-empty-lines": [
"error",
{
"max": 2
}
]
}
}