Last active
November 28, 2022 10:13
-
-
Save FrankFang/a4abf00f3db1c04e69e54583302cfd6c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"extends": "@antfu", | |
"rules": { | |
"curly": "off", | |
"arrow-parens": "off", | |
"@typescript-eslint/brace-style": "off", | |
"@typescript-eslint/consistent-type-definitions": "off", | |
"@typescript-eslint/no-unused-vars": [ | |
"error", | |
{ | |
"vars": "local", | |
"args": "none", | |
"ignoreRestSiblings": true, | |
"caughtErrors": "none" | |
} | |
], | |
"@typescript-eslint/comma-dangle": "off" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment