eslint-plugin-spellcheck icon indicating copy to clipboard operation
eslint-plugin-spellcheck copied to clipboard

Results 36 eslint-plugin-spellcheck issues
Sort by recently updated
recently updated
newest added

Is ignoreRequire supposed to disable warnings for lines like: `import { graphql } from "react-relay"`?

Bumps [qs](https://github.com/ljharb/qs) from 6.5.2 to 6.5.3. Changelog Sourced from qs's changelog. 6.5.3 [Fix] parse: ignore __proto__ keys (#428) [Fix] utils.merge: avoid a crash with a null target and a truthy...

dependencies

Bumps [json-schema](https://github.com/kriszyp/json-schema) and [jsprim](https://github.com/joyent/node-jsprim). These dependencies needed to be updated together. Updates `json-schema` from 0.2.3 to 0.4.0 Commits f6f6a3b Use a little more robust method of checking instances ef60987 Update...

dependencies

Bumps [glob-parent](https://github.com/gulpjs/glob-parent) from 3.1.0 to 5.1.2. Release notes Sourced from glob-parent's releases. v5.1.2 Bug Fixes eliminate ReDoS (#36) (f923116) v5.1.1 Bug Fixes unescape exclamation mark (#26) (a98874f) v5.1.0 Features add...

dependencies

Would like to add skip rule to ignore all UUIDs (ex: `10fa9e30-95ce-4bb6-844b-e68445bf2d63`) Have tried: ```json { "skipIfMatch": "^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$" } ``` but still get errors: ``` You have a misspelled word:...

Let's say I import an object from a library: ``` import { foo } from 'bar'; ``` I then use `foo.misspelledWord` and the plugin warns me I have a misspelled...