Files
azuredatastudio/extensions/notebook/.eslintrc.json
Charles Gagnon cdece24123 Enable no-unsafe-assignments for MSSQL (#23407)
* Enable no-unsafe-assignments for MSSQL

* Remove toString
2023-06-18 10:01:41 -07:00

18 lines
381 B
JSON

{
"parserOptions": {
"project": "./extensions/notebook/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": "off"
}
}