Been trying to figure out this for quite some while now. Also wondering how to disable rules individually? I've tried various ways but it never really works.
3
votes
1 Answers
5
votes
You can use:
/* eslint-disable-next-line */ to disable the linter for next line of your code
/* eslint-disable-name-of-rule */ to disable only a specific rule
/* eslint-disable */ at the top of a file to disable the linter for the current file
You can also create a .eslintrc.js file to configure the linter globally as specified here https://eslint.org/docs/user-guide/configuring