Files
azuredatastudio/extensions/azurecore/.eslintrc.json
Charles Gagnon 167ef2fea8 Finish up no-unsafe-assignment fixes in azurecore (#22836)
* Finish up no-unsafe-assignment fixes in azurecore

* Add link to typings

* Remove unused

* Ignore webpack file
2023-04-24 14:13:00 -07:00

18 lines
384 B
JSON

{
"parserOptions": {
"project": "./extensions/azurecore/tsconfig.json",
"createDefaultProgram": true
},
"rules": {
"@typescript-eslint/no-floating-promises": [
"error",
{
"ignoreVoid": true
}
],
// Disabled until the issues can be fixed
"@typescript-eslint/explicit-function-return-type": ["off"],
"@typescript-eslint/no-unsafe-assignment": "error"
}
}