My compiled CoffeeScript will not be checked in JShint .. why?
Short answer: because the creators of the CoffeeScript compiler did not find it necessary.
It makes sense to encode code that is written and maintained by developers. This avoids human error by making the code readable.
The code generated by the compiler, on the other hand, has completely different requirements. Readability is usually not a concern. More importantly, the code should be efficient and small.
If you really want this, you need to change the source of the CoffeeScript compiler.
source share