space/packages/wonders-server/.eslintrc.json
2021-05-16 01:34:34 +10:00

24 lines
483 B
JSON

{
"env": {
"es2021": true,
"node": true
},
"extends": [
"standard"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"comma-dangle": ["error", "only-multiline"],
"padded-blocks": "warn",
"no-multiple-empty-lines": "warn",
"space-before-function-paren": "off"
}
}