Files
azuredatastudio/extensions/.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

10 lines
248 B
JSON

{
"rules": {
"no-cond-assign": 2,
"jsdoc/check-param-names": "error",
"@typescript-eslint/explicit-function-return-type": ["error"],
"@typescript-eslint/await-thenable": ["error"],
"@typescript-eslint/no-unsafe-assignment": "error"
}
}