Dan Rose
Dan Rose
It is possible to launch multiple nodes of the same name. When this happens, those multiple nodes show up in `ros2 node list` but it is impossible to get info...
The test_linktime_composition test seems to pass CI but it logs a runtime error "Signal event received before subprocess transport available" and the warning "Task exception was never retrieved" https://ci.ros2.org/view/nightly/job/nightly_win_rel/1522/consoleText ```...
### Preflight Checklist - [X] I have read the [Contributing Guidelines](https://github.com/electron/electron/blob/main/CONTRIBUTING.md) for this project. - [X] I agree to follow the [Code of Conduct](https://github.com/electron/electron/blob/main/CODE_OF_CONDUCT.md) that this project adheres to. -...
### Code of Conduct - [X] I have read and agree to the GitHub Docs project's [Code of Conduct](https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md) ### What article on docs.github.com is affected? https://docs.github.com/en/actions/learn-github-actions/contexts#matrix-context https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs ### What...
## Description Add a new parser "ignore". This is similar to `.prettierignore`, but: 1. can be included directly in `.prettierrc`, removing a file (#4708) 2. does not require prettier to...
Using `===`, `==`, or `switch` with an object or array literal is always false. The below are all examples of erroneous comparisons that could be flagged: - `x === {}`...
**Describe the bug** `assertEquals` incorrectly treats `NaN` which as equal to itself. For reference, JavaScript has 3 similar operations for equivalence: - `NaN == NaN # false` ["loose equality"](https://tc39.es/ecma262/multipage/abstract-operations.html#sec-islooselyequal) -...
fix SyntaxWarning about regexes #94
When I cloned a hg repo, I saw these warnings: ``` /opt/homebrew/bin/git-remote-hg:76: SyntaxWarning: invalid escape sequence '\w' RAW_AUTHOR_RE = re.compile('^(\w+) (?:(.+)? )? (\d+) ([+-]\d+)') /opt/homebrew/bin/git-remote-hg:281: SyntaxWarning: invalid escape sequence '\('...
If I import a file with long strings, it can crash if the same file is Typescript, whereas the Javascript equivalent works fine ``` const longstring = "r".repeat(100000000) await Deno.writeTextFile("./foo.js",`export...