UNPKG

feathers-ottoman

Version:

A Feathers service adapter for the Ottoman ODM

41 lines 1.09 kB
{ "root": true, "parser": "@typescript-eslint/parser", "parserOptions": { "project": "./tsconfig.eslint.json" }, "plugins": [ "import", "@typescript-eslint" ], "extends": [ "airbnb-typescript/base", "plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended" ], "rules": { "no-underscore-dangle": "off", "@typescript-eslint/no-explicit-any": "off", "@typescript-eslint/naming-convention": [ "error", { "selector": ["function"], "format": null, "leadingUnderscore": "allow" } ], "class-methods-use-this": [ "error", { "exceptMethods": [ "_getId", "_getSortQuery", "_getLimitQuery", "_getSkipQuery", "_getIgnoreCaseQuery", "_mapQueryOperator" ] } ] } }