high-standard
v4.1.3
Published
The hassle-free opinionated JavaScript code linter
Downloads
34
Readme
High Standard is a hassle-free opinionated JavaScript code linter powered by ESLint.
The tool automatically scans and generates ESLint configs suitable to your tool chains:
- Jasmine
- Jest
- jQuery
- Lodash
- Prettier
- React
- Testing Library
- TypeScript
- Vitest
Command-line usage
npm exec high-standard [...path] [--options]
|Argument|Description|
|---|---|
|path
|Specify one or more file/directory/glob paths to files to be linted. If none specified, the current working directory will be used.|
|--warnings
or -w
|Turn on rules with warning severity.|
|--cache
|Speed up processing time by reading last cached results.|
|--fix
or -f
|Fix auto-fixable errors and warnings.|
|--update-allowlist
or -u
|Silence all present errors so the next run will not report these errors again. Meaning that, as long as the error count per-file per-rule is lower or the same, the process will not break.|
|--no-type-checking
|Speed up processing time by disabling the rules that require type information services.|
|--no-progress
|Print only linting results.|
ESLint compatible usage
Importing high-standard
package exposes its ESLint flat configs, therefore you can integrate this with your typical ESLint workflow.
For example,
- Install
high-standard
package locallynpm install --save-dev high-standard
- Create eslint.config.js file next to your package.json containing
module.exports = require('high-standard')
- Install ESLint extension for VS Code.
- Expect to see linting results inside your VS Code.