fisker Cheung
fisker Cheung
**What is the current behavior?** ```html ``` Cause Vue warning ```text [Vue warn]: Invalid prop: custom validator check failed for prop "outputFormat". ``` **Please provide the steps to reproduce and...
Turns out `eslint-scope` has this reassign info, let's use it.
### Description Forbid assign `name`, `stack` (maybe also `cause`) to error. It's common to assign values to error for debug. ```js throw Object.assign(new Error('message'), {someUsefulInfomationCantDisplayInMessage}) ``` Normally it's fine, but...
### What rule do you want to change? no-unused-vars ### What change to do you want to make? Generate fewer warnings ### How do you think the change should be...
### What rule do you want to change? logical-assignment-operators ### What change to do you want to make? Generate more warnings ### How do you think the change should be...
**Prettier 2.3.0** [Playground link](https://prettier.io/playground/#N4Igxg9gdgLgprEAuE0A2BPJACAlgZ3wFc58AdKCgYmwHkAHGXaAQzUwBpt964xcAZhmyQoA3AHMiAJxZNo3ODCZQJ+bDAAWc7C2lxuvfuLAaI2AFZF8MbAHICxUnewRp9+kXb47SCiA5URmYofGRQPWkIAHcABT0EMJQ2aJYMMMCAI1kwAGslAGV6Fn5VZBhpEkC4AFtMuAATBsaAGRZVIhYJOAAxNxq5FQlkEBYiGAgAkE0YGrQAdU1ceB4SuALE5dwAN2WMEbBCKdxQuGkYWNkJAeQBNnw4QIt8AA8AIRz8mAKWGrgWk5wW73R4gZ4vAonCRoOAARSIEHgwLQD0CxWkD2kIwwvzQU3o0hOMHmuAaWmQAA4AAxoqIPeayegjAmkM7bIGBACOCPglwg9CSo3wAFooHBGo0pvpubh9JcujckHcUaCHjVcOVKqqoTD4YigUqQYEYCxMiSyZpkAAmY2yXBoKEAYQgNUVIFIAFYptY4AAVU1JZWokDbEgASSgzVgBTAhMYAEFIwUYBgYciHgBfDNAA) ```sh --parser yaml ``` **Input:** ```yaml only: issues # Optionally, specify configuration settings that are specific to just 'issues' or 'pulls': ``` **Output:** ```yaml only: issues...
## Description - [x] Remove our invalid AST check. ## Checklist - [x] I’ve added tests to confirm my change works. - [ ] (If changing the API or CLI)...
### What is the problem this feature will solve? I'm using a worker to run asynchronous tasks and block the main thread with `Atomics.wait()`. If the worker has something like...
### What is the problem this feature will solve? It's a nice way to accept both `URL` and path string in API, but we need covert it to either string...