ts-log
Version:
Abstract logger TypeScript interface with a dummy logger that does nothing, useful for libraries.
20 lines (19 loc) • 605 B
Plain Text
{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "import"],
"extends": [
"airbnb-typescript/base",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/no-unused-vars": ["error", { "argsIgnorePattern": "^_" }],
"@typescript-eslint/consistent-type-definitions": ["error", "interface"],
"@typescript-eslint/no-explicit-any": "off",
"import/prefer-default-export": "off",
"prettier/prettier": "error"
}
}