Jani
Jani
Yet another way would be to reserialize nested keys back to yaml/json and set that string into `s.value`, but I'm not sure if I like that
Yeah, I understand and thus I'm trying to come up with a good idea. What about supporting setting `s.Key` to `nil`? In other words, if the secret key is not...
The plugin hooks should not throw exceptions, otherwise the process seems to hang. Here's an improved version: ```ts export default class WotanWebpackPlugin implements Plugin { public constructor(private options: LintCommand) {...
Basically you'd save the `class WotanWebpackPlugin` and related stuff to a file, import it in your configuration file and add the `new WotanWebpackPlugin(...)` to [the plugins section](https://webpack.js.org/configuration/plugins/) of your Webpack...
Here's another take where the linter is forked into background: ```ts import {autobind} from "core-decorators"; import {ChildProcess, spawn} from "child_process"; import {EOL} from "os"; import {compilation, Compiler, Plugin} from "webpack";...
Another point to consider: [`create-react-app`](https://github.com/facebook/create-react-app/) has gained support for Typescript, but they do not support `tslint` yet (only `eslint` for `.js` files). They are looking into adding support for linting...
They're discussing `tslint` integration at https://github.com/facebook/create-react-app/issues/5641. From what I can tell at the moment, yes, the integration should be a `webpack` plugin. Currently [`create-react-app` is aiming](https://github.com/facebook/create-react-app/pull/5697) for `tslint` support via...
I'm still seeing this. Terraform seems to have some problems as well: https://github.com/terraform-providers/terraform-provider-aws/issues/8485 EDIT: I'm facing this issue, because I changed some VPC configs, which forced Pulumi to recreate the...
I think I found a way to reproduce this: - Create a "basic" EKS setup using pulumi - Make sure your role does **not** have the permission `autoscaling:TerminateInstanceInAutoScalingGroup` - An...
Hey! Good to hear you found it interesting and made some progress already! Sure, I was a bit plain with ESM: - Snowpack primarly supports ECMAScript modules (`export`, `import` and...