Skip to content

Commit a1b0de7

Browse files
committed
more linting
1 parent b375bf3 commit a1b0de7

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dist
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import type { NextConfig } from "next";
22

3-
const nextConfig: NextConfig = {
4-
/* config options here */
5-
};
3+
const nextConfig: NextConfig = { /* config options here */ };
64

75
export default nextConfig;

packages/connect-react/src/polyfills.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
// 5:const element = document.createElement('i')
44
if (typeof document === "undefined") {
55
globalThis.document = {
6-
createElement: () => {},
7-
} as any;
6+
createElement: () => { /* noop */ },
7+
} as any; // eslint-disable-line @typescript-eslint/no-explicit-any
88
}

0 commit comments

Comments
 (0)