Skip to content

Commit

Permalink
Modify .eslintrc to turn off any errors for declaration files
Browse files Browse the repository at this point in the history
  • Loading branch information
Kartik Raj committed Jul 17, 2023
1 parent f7125da commit 96f118a
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions pythonExtensionApi/.eslintrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"rules": {
"padding-line-between-statements": [
"error",
{ "blankLine": "always", "prev": "export", "next": "*" }
]
}
"overrides": [
{
"files": ["**/main.d.ts"],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"padding-line-between-statements": ["error", { "blankLine": "always", "prev": "export", "next": "*" }]
}
}
]
}

0 comments on commit 96f118a

Please sign in to comment.