Kenneth Skovhus
Kenneth Skovhus
This is a: - [ ] Bug Report - [ ] Feature Request - [ ] Question - [x] Other Which concerns: - [x] flow-runtime - [x] babel-plugin-flow-runtime - [x]...
Related #220 (solves everything besides the `local` scope). This PR supports: - internally resolve all files that are sourced (i.e. `. my-file.sh` or `source ~/something`). This is done with a...
Currently, when auto-completing, the LSP shows a lot of irrelevant symbols related to the current scope (especially local variables from other function). Task: figure out if we can use the...
Currently we warn that usage of [Sinon](https://github.com/sinonjs/sinon) might be incompatible with Jest. But it would be nice just to convert it to usage Jest Mocks and Spies. **The good news:**...
When converting `webpack` to Jest, `jest-codemods` failed on converting the `should.js` construct `oneOf`. Let us go over the `should.js` transformer and see if there are more matchers that I missed....
**Do you want to request a *feature* or report a *bug*?** Feature/Bug **What is the current behavior?** When building a react-native module, it is currently widely used to have an...
Parse fails for the entire document when you have a here document inside an `if`, that contains a variable as the first expression. MWE: ```bash if true; then a_string='some stuff...
```sh #!/usr/bin/env bash function to_decimal () { echo "$(("$1"#"$2"))" } to_decimal 16 ff ``` The function ``to_decimal`` converts the number ``"$2"`` in base ``"$1"`` to decimal. The parser fails to...
```sh main() { local foo="asd"` `"fgh" } ``` Originally reported in bash-language-server: https://github.com/mads-hartmann/bash-language-server/issues/129