Skip to content

Commit c144200

Browse files
author
Kartik Raj
authored
Modify .eslintrc to turn off any errors for declaration files (#21652)
For #21631
1 parent f7125da commit c144200

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

pythonExtensionApi/.eslintrc

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
{
2-
"rules": {
3-
"padding-line-between-statements": [
4-
"error",
5-
{ "blankLine": "always", "prev": "export", "next": "*" }
6-
]
7-
}
2+
"overrides": [
3+
{
4+
"files": ["**/main.d.ts"],
5+
"rules": {
6+
"@typescript-eslint/no-explicit-any": "off",
7+
"padding-line-between-statements": ["error", { "blankLine": "always", "prev": "export", "next": "*" }]
8+
}
9+
}
10+
]
811
}

0 commit comments

Comments
 (0)