John Backus
John Backus
There are many other low hanging fruit too for `masgn` nodes
#413 required adding the same example 9 times to `meta/def.rb`: [diff](https://github.com/mbj/mutant/pull/413/files#diff-1d7a1c09650337b70e04322c549fbf6c). It would be nice if we could specify something like `subset` in the example below: ``` ruby Mutant::Meta::Example.add do...
I refactored part of our configuration a while back for rubocop-rspec and I'm pretty happy with it. See https://github.com/backus/rubocop-rspec/pull/174. Basically, all of the cop documentation had something like this ```ruby...
All major browsers support the [`SecurityPolicyViolationEvent`](https://developer.mozilla.org/en-US/docs/Web/API/SecurityPolicyViolationEvent#examples): ```js document.addEventListener("securitypolicyviolation", (e) => { console.log(e.blockedURI); console.log(e.violatedDirective); console.log(e.originalPolicy); }); ``` The apps I'm working on are very strict and security conscious. We serve all...