forumone / nextjs-project

Next.js project template
0 stars 0 forks source link

Enforce exports at bottom of file with linting #24

Open kmonahan opened 1 year ago

kmonahan commented 1 year ago

Add linting check to catch when exports are done inline rather than at the bottom of the file. However, Next.js may not support exporting getStaticProps and other data fetching functions at the bottom of the file. As part of this work, retest that to see if it still true with Next 13 and, if so, ensure that an exception is configured for those files.

Also fix any existing exports that are not at the bottom of the file.