forked from apollographql/federation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc
More file actions
16 lines (14 loc) · 677 Bytes
/
.eslintrc
File metadata and controls
16 lines (14 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"extends": ["plugin:@typescript-eslint/recommended"],
"rules": {
"@typescript-eslint/no-namespace": ["error", { "allowDeclarations": true }],
"@typescript-eslint/no-inferrable-types": ["error", { "ignoreParameters": true, "ignoreProperties": true }],
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }],
// Temporary overrides - ideally we would get rid of these
"@typescript-eslint/no-this-alias": "warn",
"@typescript-eslint/no-var-requires": "warn",
"@typescript-eslint/triple-slash-reference": "warn"
}
}