16 lines
358 B
JSON
16 lines
358 B
JSON
{
|
|
"extends": ["conventions", "prettier"],
|
|
"plugins": ["prettier"],
|
|
|
|
"parser": "@typescript-eslint/parser",
|
|
|
|
"env": { "node": true, "browser": true },
|
|
|
|
"rules": {
|
|
"prettier/prettier": "error",
|
|
"arrow-body-style": "off",
|
|
"@typescript-eslint/no-extraneous-class": "off",
|
|
"@typescript-eslint/explicit-function-return-type": "off"
|
|
}
|
|
}
|