nestjs-paginate/.eslintrc.json

21 lines
656 B
JSON
Raw Permalink Normal View History

2020-06-26 21:25:03 +00:00
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "tsconfig.json",
"sourceType": "module"
},
"plugins": ["@typescript-eslint/eslint-plugin"],
2021-09-09 10:45:00 +00:00
"extends": ["plugin:@typescript-eslint/eslint-recommended", "plugin:@typescript-eslint/recommended", "prettier"],
2020-06-26 21:25:03 +00:00
"root": true,
"env": {
"node": true,
"jest": true
},
"rules": {
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/explicit-function-return-type": "off",
2021-09-09 10:45:00 +00:00
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }]
2020-06-26 21:25:03 +00:00
}
}