Files
azuredatastudio/extensions/admin-tool-ext-win/.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

15 lines
252 B
JSON

{
"parserOptions": {
"project": "./extensions/admin-tool-ext-win/tsconfig.json"
},
"rules": {
"@typescript-eslint/no-floating-promises": [
"error",
{
"ignoreVoid": true
}
],
"@typescript-eslint/no-unsafe-assignment": "off"
}
}