You can put it all in one big file that will ensure no one contributes or tries to maintain the code.
I think your best option is not to swim against the current. The vast majority of developers organize code in files and folders because people can easily understand hierarchies. Developer tools (IDEs and editors) have good search and fuzzy find built-in so you don't have to click through folder hierarchies to find a file, or find where a function gets defined.
Comments
You can put it all in one big file that will ensure no one contributes or tries to maintain the code.
I think your best option is not to swim against the current. The vast majority of developers organize code in files and folders because people can easily understand hierarchies. Developer tools (IDEs and editors) have good search and fuzzy find built-in so you don't have to click through folder hierarchies to find a file, or find where a function gets defined.
Guess I have to write a new IDE :D