|
|
|
|
|
by dugword
3142 days ago
|
|
You add 'hello' in the linter's config as a pre-defined global, until you get around to fixing that. I would not want my linter to load multiple files, since that pattern of polluting the global namespace is really not maintainable. The fix can be fairly simple if you wrap your entire b.js file in a function that takes an argument of 'hello' which you invoke from a.js. If that doesn't work because you have too many global declarations you should probably just dump all the code into one giant file. That might seem terrible and unmaintainable, but it is exactly what you already have. Once the mess is all in one spot you can use a linter to start improving the quality, and begin breaking of the code into actual modules. |
|
Sounds too scary.
I am facing the same problem of too many global declarations all thrown into a global soup during build time when all js files are concatenated.
I am looking for a safe and methodological method. By safe I mean a method that a robot can understand. If you leave room for thinking then people start making mistakes.
It's hard enough to get the green light for starting such project. If you start breaking stuff as well, you're going to burn the credit for refactor real quick