karlismelderis

Results 9 comments of karlismelderis

🙏 can we please finish PR and release this feature?

also let's open option to specify http/https if server is localhost I don't think anyone expects to run under SSL

would be really nice to support this: ``` clientRouter.use(authorizeUser); clientRouter.get(/api/somethingA/:id, getIt()); clientRouter.get(/api/somethingB/:id, getIt()); ``` ``` callbackRouter.use(authorizeM2M); callbackRouter.get(/api/somethingA/:id/callback, justDoIt()); callbackRouter.get(/api/somethingB/:id/callback, justDoIt()); ``` ``` app.use('/api', clientRouter) app.use('/api', callbackRouter) ```

well... I'm not expert in tsconfig 🙏 correct me if I'm wrong but package still can be available for different other reasons: *) installed globally *) installed at root of...

for example currently rule has configuration for dev dependencies. it's a useful feature for test files. if you lift and shift project from monorepo it will stop working because modules...

if you decide to migrate project from repo to separate repo if you decide to install dependencies for single project in repo if you decide to copy code of single...

true. In our case it would be dev dependencies but in production code. I assume that configuration to turn on/off dev dependencies is there to prevent compiled production code to...

agree. some configuration option would be appropriate. `typeDependencies` would be confusing. `noExternalTypeImports` or `noExtraneousTypeImports` maybe?

Due to historical decisions we're using chai assertions in Jest So `.exist`, `.true` and other chai syntax still exist in our test files but chai do not have `.disabled` (it's...