Eric

Results 11 comments of Eric

@Jason3S In some projects at work, I've noticed some filenames are misspelled and I'd like a way to auto detect them in a reliable manner. We're using `lint-staged` too so...

@Jason3S The first suggestion does detect changed files, but the output is not very helpful. To illustrate this, I intentionally created two files with spelling issues (one in my project...

I found a workaround for the `lint-staged` config. The command needs to be wrapped in `sh -c ''`. Example: ```js export default { '*': (absolutePaths) => { return `sh -c...

To get around the `--no` issue, you have to use `--` after `cspell` like so: ```sh git diff --name-only --cached | npx --no cspell -- --show-context stdin ``` --- The...

Here's my 2 cents: > **What should be checked** I think it would be nice if the relative path to the file from the `cwd` were to be checked. Example:...

@alexander-akait The tests failed with `FATAL ERROR: v8::ToLocalChecked Empty MaybeLocal.` I ran into this on my local machine and just ran tests again and it worked fine. Can you rerun...

@dkrnl There _might_ be additional info relating to the `chunkhash` and/or `contenthash` stored in `asset.info`. These extra properties may or may not exist depending on your webpack configuration. To see...