Skip to content

Commit 10797eb

Browse files
committed
refactor: fix linting for ts directive
In the recommended set, directives are forbidden. Allow them with comments and add a comment explaining the usage in the code
1 parent 3b32ea8 commit 10797eb

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.eslintrc.js

+4
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,9 @@ module.exports = {
1515
},
1616
rules: {
1717
"react/prop-types": 0,
18+
"@typescript-eslint/ban-ts-comment": [
19+
2,
20+
{ "ts-expect-error": "allow-with-description" },
21+
],
1822
},
1923
};

src/render.test.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ describe("render", () => {
1616
});
1717

1818
it("throws an error if a lower-case component is used", () => {
19-
// @ts-expect-error
19+
// @ts-expect-error - lower-case element test does not exist
2020
expect(() => render(<test>Test</test>)).toThrowError(
2121
"No lower-case elements or class components supported, please make sure all your components start with an upper-case letter and are functions."
2222
);

0 commit comments

Comments
 (0)