Start on new eslint file (#9314)

This commit is contained in:
Amir Omidi
2020-02-26 11:39:01 -08:00
committed by GitHub
parent 73d9b7f22a
commit 6cf82d2611
4 changed files with 59 additions and 52 deletions

20
.eslintrc.sql.ts.json Normal file
View File

@@ -0,0 +1,20 @@
{
"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
}
]
}
}