Dan Orzechowski
Dan Orzechowski
added the ability to set `coverlay:untested-line-background-color` or `coverlay:tested-line-background-color` to `nil` in order to disable it. for instance, I only care about untested lines and would like to disable the background...
right now the experience isn't so great when there's an error node in the CST. for instance, typing an open-curly bracket at the beginning of line 2 here: ```javascript function()...
accidentally pushed some bad code which caused an error while enabling a `tsi--mode`s. it'd be nice to have a quick smoke test which sets the current major-mode.
should address #28 . there's a new `defcustom` called `tsx-mode-fold-tree-queries` which is a list of strings corresponding to tree-sitter query patterns targeting nodes to fold. the default value for this...
I'm attempting to create a grammar derived from tree-sitter's CSS grammar and, based on the suggestions in [this comment](https://github.com/tree-sitter/tree-sitter/issues/646#issuecomment-647781353), have come up with (basically) the following: ``` // tree-sitter-css/my_grammar/grammar.js module.exports...
## Environment node.js v16.10.0 npm 7.24.0 @linaria/core 3.0.0-beta.15 @linaria/react 3.0.0-beta.15 preact-cli 3.3.5 ## Description following the documentation at https://github.com/callstack/linaria/blob/master/docs/CONFIGURATION.md#preact , I ran into a couple of problems. - problem no.1...
I've got a source file, `myError.js`, being transpiled with `babel-plugin-transform-builtin-extend`: ```javascript export default class MyError extends Error { constructor() { super('this is a MyError'); } } ``` ```json { "presets":...
now that [`tsx-mode.el`](https://github.com/orzechowskid/tsx-mode.el) has support for GraphQL tagged template strings, it'd be nice if we could use tree-sitter for indentation there instead of graphql-mode.
each .el file in this project generates at least a handful of warnings when compiled. these should be cleaned up.