DevClad-Inc / devclad

Detected empty functions JS-0321
Anti-pattern
Minor
a year agoa year old
Unexpected empty arrow function
28const app = express();
29app.use(cors<Request>(corsOptions));
30
31const server = app.listen(process.env.PORT || 9000, () => {}); // defined as 443 in the .env file32
33const peerServer = ExpressPeerServer(server, {
34	path: '/',
Unexpected empty method 'onClick'
119  bg-black duration-300 rounded-md py-2 px-4 hover:bg-neutral-900
120  hover:border-neutral-400
121  inline-flex justify-center font-semibold text-white`,
122	onClick: () => {},123};