mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
21 lines
311 B
JSON
21 lines
311 B
JSON
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 6,
|
|
"sourceType": "module",
|
|
"project": "./tsconfig.sql.json"
|
|
},
|
|
"plugins": [
|
|
"@typescript-eslint",
|
|
"jsdoc"
|
|
],
|
|
"rules": {
|
|
"@typescript-eslint/no-floating-promises": [
|
|
"warn",
|
|
{
|
|
"ignoreVoid": true
|
|
}
|
|
]
|
|
}
|
|
}
|