We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbaa4ce commit 2097e0bCopy full SHA for 2097e0b
1 file changed
.eslintrc.js
@@ -33,8 +33,10 @@ module.exports = {
33
"no-fallthrough": ["error", { allowEmptyCase: true }],
34
"@typescript-eslint/no-var-requires": ["off"],
35
"@typescript-eslint/no-explicit-any": ["off"],
36
+ // We need this for our `GraphileBuild`/`GraphileConfig`/etc namespaces
37
+ "@typescript-eslint/no-namespace": "off",
38
"@typescript-eslint/no-unused-vars": [
- "error",
39
+ "warn",
40
{
41
argsIgnorePattern: "^_",
42
varsIgnorePattern: "^_",
0 commit comments