Skip to content

Commit

Permalink
fix(create-next-app): Add ts lint rule if --empty flag (#70089)
Browse files Browse the repository at this point in the history
Closes: #69260

Co-authored-by: Kawahara Shotaro <[email protected]>
  • Loading branch information
ijjk and k-taro56 authored Sep 13, 2024
1 parent 35706e3 commit 5732610
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "next/core-web-vitals"
"extends": ["next/core-web-vitals", "next/typescript"]
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "next/core-web-vitals"
"extends": ["next/core-web-vitals", "next/typescript"]
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "next/core-web-vitals"
"extends": ["next/core-web-vitals", "next/typescript"]
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "next/core-web-vitals"
"extends": ["next/core-web-vitals", "next/typescript"]
}

0 comments on commit 5732610

Please sign in to comment.