We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfaee05 commit f4471c2Copy full SHA for f4471c2
eslint-plugin/lib/index.js
@@ -34,6 +34,7 @@ const resolveRule = (rulePath) => {
34
35
const hasTypescriptParser = () => {
36
try {
37
+ // eslint-disable-next-line node/no-unpublished-require
38
require("@typescript-eslint/parser");
39
return true;
40
} catch (e) {
eslint-plugin/lib/rules/prefer-collections-with-pagination.js
@@ -63,7 +63,7 @@ const rule = createRule({
63
name: "prefer-collections-with-pagination",
64
meta: {
65
docs: {
66
- description: "Prefer API collections with pagination",
+ description: "Prefer API collections with pagination.",
67
category: "eco-design",
68
recommended: "warn",
69
},
0 commit comments