Geoff Swift
Geoff Swift
### Summary If I give `sf` a bogus command, it reports success exit code 0. ### Steps To Reproduce ```shell $ sf invalid < /dev/null; echo "Exit code: $?" ›...
In addition to "vue", "angular" and "html" there is also "lwc" parser, refer to https://prettier.io/docs/en/options.html I got it working by adding one line of code. Without this change the plugin...
Various lightning APIs are deprecated/unsupported and their usage would ideally be flagged up by the rule `no-deprecated`. Examples include... ```javascript import { getRecordUi } from 'lightning/uiRecordApi'; ``` https://developer.salesforce.com/docs/platform/lwc/guide/reference-wire-adapters-record-ui.html#usage ```javascript import...
We prefer to generate our HTML by building up a DOM node tree, and reading the outerHTML property, and thus we can ensure that we are securely / appropriately escaping...
There seems to be a bug with the sauce_whisk gem against Ruby 3.2.2. When I tried it out it crashes like so... /usr/local/rvm/gems/ruby-3.2.2/gems/sauce_whisk-0.3.2/lib/sauce_whisk.rb:144:in `block in load_options_from_yaml': undefined method `exists?' for...
Idea for new rule: FAIL: ```javascript expect(method.mock.calls).toHaveLength(0); ``` WIN: ```javascript expect(method).not.toHaveBeenCalled(); ```
Some people seem to like building up an `Array`, by starting with an empty list and calling `concat()` with extra items. A trivial minimal reproduction would look like this: ```js...
unicorn/consistent-destructuring seems to trigger in multiple scenarios. We would ideally be able to control which specific cases are active. For example this seems to always be good ```js function example(o)...
Since 15.0.1 we see this error validating our Jenkins script: ``` Jenkinsfile.groovy 0 error Unknown parsing error: "Jenkinsfile.groovy: 1: unable to resolve class Library for annotation\n @ line 1, column...
### Summary Source tracking updated with current code on file system, rather than what was actually deployed. ### Steps To Reproduce 1. Make some code changes 2. Start a push...