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.
irreligious/.eslintrc.json

22 lines
598 B
JSON
Raw Permalink Normal View History

2021-09-05 06:31:51 -05:00
{
"extends": [
"eslint:recommended",
2021-09-05 11:12:18 -05:00
"plugin:@typescript-eslint/recommended",
"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"},
"plugins": [
"@typescript-eslint",
"prettier"
],
2021-09-05 11:12:18 -05:00
"rules": {
"@typescript-eslint/triple-slash-reference": "off",
"@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",
"prettier/prettier": "warn"
2021-09-05 11:12:18 -05:00
}
2021-09-05 06:31:51 -05:00
}