Jed

Results 153 comments of Jed

Please support a TypeScript, code-first schema! ## Benefits of a TypeScript, code-first schema 1. The [TS API](https://github.com/Microsoft/TypeScript/wiki/Using-the-Compiler-API) parses both TS and JS files, providing a solid AST, from which a...

I use the following webpack CSS rule: ```js exports.css = { test: /\.css$/, use: [ 'style-loader', 'css-loader', { loader: 'postcss-loader', options: { plugins: postcssInit } } ] }; function postcssInit()...

Here are some vscode/AVA features I'm looking for: 1. An AVA [problem matcher](https://code.visualstudio.com/docs/editor/tasks#_processing-task-output-with-problem-matchers). Apparently, you can create your own. 1. An AVA debugger extension. It's [already been requested in a...

I think when you expect nesting like this you have to be more specific, using the [`>` combinator](https://developer.mozilla.org/en-US/docs/Web/CSS/Child_selectors): ```scss .foo { &__text { .foo--red > & { color: red; }...

When you're dealing with recursion, you really don't have a choice.

Unfortunately, I don’t remember the scenario. Can’t believe I didn’t include that here. Sorry.

1. I agree that we shouldn't be shortening names. 1. Agreed. 1. Not sure what else there is to investigate. The GraphQL docs themselves [use camel case arguments](https://graphql.org/graphql-js/passing-arguments/), which is...

@sdeering This would have to be a Code Painter 2.0 feature, so you won't be seeing it any time soon. The way Code Painter works now wouldn't support this much...

I think `max_line_length` is the most explanatory. I'm not sure how `line_width=80,120` would actually do anything. Which number would it wrap at if you have more than one?