lintspaces-cli
lintspaces-cli copied to clipboard
A CLI for the node-lintspaces module.
This PR was automatically created by Snyk using the credentials of a real user.Snyk has created this PR to fix one or more vulnerable packages in the `npm` dependencies of...
Hi @evanshortiss, I was thinking about to move the cli support into the lintspaces module itself and bring it finally to a major release of 1.0.0. So we can keep...
Both ESLint and Stylelint use `--cache` + `--cache-location` Eslint creates cache entries like: ```json { "/path/to/file.js": { "size":234, "mtime":1505831352000, "hashOfConfig":"105xr29", "results":{ "filePath":"/path/to/file.js", "messages":[], "errorCount":0, "warningCount":0 } } ... } ```...
For example: `.gitignore` It's possible to pass contents of .gitignore file as `ignores` to `lintspaces` but it's more convenient to just pass the name `.gitignore`
I have a project directory structure that looks a little like this: ``` / |- client_module/ | |- node_modules/ | |- index.js | |_ etl.py |- node_modules/ |- src/ |...