mssql-change-tracking
Version:
MS SQL server change tracking functions
28 lines (27 loc) • 773 B
Plain Text
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": ["@typescript-eslint"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"env": {
"node": true,
"es6": true
},
"rules": {
"no-async-promise-executor": "warn",
"no-console": "warn",
"@typescript-eslint/restrict-plus-operands": "error",
"@typescript-eslint/interface-name-prefix": 0,
"@typescript-eslint/explicit-function-return-type": "warn",
"@typescript-eslint/indent": 0,
"@typescript-eslint/no-shadow": "error",
"@typescript-eslint/explicit-module-boundary-types": 0
}
}