2023-11-08から1日間の記事一覧

【Everyday Next.js】3. husky / lint-staged

lint 自動実行の必要性 前回も説明した通り、nextjs で build するときは自動で lint も走るようである。 例えば以下のコード。 'use client'; import React, {useState} from 'react'; export default function Home() { const isTrue = Math.random() > 0.…