why-is-node-still-running
Version:
Find out exactly why Node is still running.
31 lines (25 loc) • 561 B
JSON
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"smarter-tabs"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"brace-style": ["warn", "1tbs", { "allowSingleLine": true }],
"no-mixed-spaces-and-tabs": ["warn", "smart-tabs"],
"smarter-tabs/smarter-tabs": "warn"
},
"overrides": [
{
"files": ["test/*.test.ts"],
"rules": {
"@typescript-eslint/no-non-null-assertion": "off"
}
}
]
}