Skip to content

Commit 24ce084

Browse files
authored
Fixes Download Snapshot relay query attributes (#415)
1 parent 606b59c commit 24ce084

File tree

6 files changed

+285
-650
lines changed

6 files changed

+285
-650
lines changed

eslint.config.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,19 @@ module.exports = tseslint.config(
2828
style: "kebab-case",
2929
},
3030
],
31+
"@typescript-eslint/no-unused-expressions": [
32+
"error",
33+
{
34+
allowShortCircuit: true,
35+
allowTernary: true,
36+
},
37+
],
38+
"@typescript-eslint/no-empty-function": [
39+
"error",
40+
{
41+
allow: ["arrowFunctions"],
42+
},
43+
],
3144
"@typescript-eslint/no-explicit-any": "off",
3245
"@typescript-eslint/no-unused-vars": "off",
3346
},

0 commit comments

Comments
 (0)