This repository has been archived on 2022-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
2021-09-05 06:31:51 -05:00
|
|
|
{
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
2021-09-05 11:12:18 -05:00
|
|
|
"plugin:@typescript-eslint/recommended",
|
2021-09-06 12:02:38 -05:00
|
|
|
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
|
|
|
"prettier"
|
2021-09-05 06:31:51 -05:00
|
|
|
],
|
|
|
|
"parser": "@typescript-eslint/parser",
|
2021-09-05 11:12:18 -05:00
|
|
|
"parserOptions": {"project": "tsconfig.json"},
|
2021-09-06 12:02:38 -05:00
|
|
|
"plugins": [
|
|
|
|
"@typescript-eslint",
|
|
|
|
"prettier"
|
|
|
|
],
|
2021-09-05 11:12:18 -05:00
|
|
|
"rules": {
|
|
|
|
"@typescript-eslint/triple-slash-reference": "off",
|
2021-09-06 12:02:38 -05:00
|
|
|
"@typescript-eslint/no-unused-vars": "off",
|
2021-09-06 12:42:25 -05:00
|
|
|
"@typescript-eslint/member-ordering": "warn",
|
|
|
|
"@typescript-eslint/explicit-function-return-type": "error",
|
2021-09-06 12:02:38 -05:00
|
|
|
"prettier/prettier": "warn"
|
2021-09-05 11:12:18 -05:00
|
|
|
}
|
2021-09-05 06:31:51 -05:00
|
|
|
}
|