Boris Petrov
Boris Petrov
```hbs {{or true (throw "asd")}} ``` This, as of Ember 3.28, shows `true`. `{{or false (throw "asd")}}` throws an exception. So the [section](https://github.com/jmurphyau/ember-truth-helpers#usage) in the README which says that they...
See [this](https://github.com/embroider-build/embroider/issues/592#issuecomment-818789414) comment (and the whole discussion). cc @dgeb
I'm using grc version `1.11.1`. The command in the title is not working properly - for some reason the following in `grc.conf` is matched: ``` # log file \b\w+\b.*log\b conf.log...
Jakarta EE 9 is out already along with stable versions of the two most popular containers - Tomcat 10 and Jetty 11. `shiro-jersey` internally still uses `javax` (e.g. `import javax.ws.rs.core.Response`...
When installing `ember-fullcalendar`, npm warns: `npm WARN deprecated [email protected]: This addon is not being maintained anymore, use at your own risk.`. Perhaps this addon should be replaced with something else.
To fix Ember 4.10 [deprecation](https://deprecations.emberjs.com/v4.x/#toc_ember-string-add-package) warnings. Similar to https://github.com/ember-cli/ember-resolver/pull/862 and https://github.com/jelhan/ember-style-modifier/pull/139. cc @romulomachado P.S. This must be released as a major version.
### Current Behavior Upgrading from 8.2.1 to 8.3 causes: ``` Problems reading data from Binary store in /home/boris/.gradle/.tmp/gradle11359092346086075713.bin offset 764 exists? true ``` ### Expected Behavior No error. ### Context...
```java switch (x) { case Map m -> return 1; default -> return 2; } ``` This leads to a `DLS_DEAD_LOCAL_STORE` error for the `m` variable. That's a false-positive because...
`no-useless-spread` already handles cases like `[...foo.toSorted()]` which is awesome! However, it would be nice to also handle `[...foo].toSorted()` and `[...foo].sort()`, both of which can be replaced with `foo.toSorted()`. cc @fisker,...
Doing: ```ts import { typeTest } from '@glint/type-test'; ``` In a test file leads to an `ember/no-test-import-export` warning probably because of [this line](https://github.com/ember-cli/eslint-plugin-ember/blob/master/lib/rules/no-test-import-export.js#L50). However, [that's the way to do type-tests...