mirror of
https://github.com/tldr-pages/tldr.git
synced 2026-09-21 04:36:49 +08:00
* batch * Update pages/common/audacious.md Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com> --------- Co-authored-by: Ivan Baluta <50071699+ivanbaluta@users.noreply.github.com> Co-authored-by: Sahil Afrid Farookhi <msafarookhi@gmail.com>
460 B
460 B
eslint
A pluggable linting utility for JavaScript and JSX. More information: https://eslint.org/docs/latest/use/command-line-interface.
- Create the ESLint configuration file:
eslint --init
- Lint one or more files:
eslint {{path/to/file1.js path/to/file2.js ...}}
- Fix lint issues:
eslint --fix
- Lint using the specified configuration file:
eslint {{[-c|--config]}} {{path/to/config_file}} {{path/to/file1.js path/to/file2.js ...}}