Skip to content

Commit ddb133f

Browse files
committed
Fix CI: update eslint config, prettier, and TypeScript types
1 parent 0b9e40b commit ddb133f

File tree

8 files changed

+1339
-288
lines changed

8 files changed

+1339
-288
lines changed

.prettierrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"semi": true,
55
"tabWidth": 2,
66
"bracketSpacing": true,
7-
"jsxBracketSameLine": false,
7+
"bracketSameLine": false,
88
"arrowParens": "always",
99
"endOfLine": "auto",
1010
"trailingComma": "all"

example/components/ErrorBoundary.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ interface State {
1818
* Container for potentially error generating components.
1919
* Triggers the optional onErr function with error message as string.
2020
* Provides the option to attempt rendering the children again.
21-
*
21+
*
2222
* NOTE: This MUST be a class component because React's componentDidCatch
2323
* lifecycle method is only available in class components. There is no
2424
* hook equivalent for error boundaries.

0 commit comments

Comments
 (0)