To override ESLint rules for specific files or directories, you can create a .eslintignore or ______ file with the patterns of the files or directories to be excluded.
- .eslintrc.js
- .eslintignore
- .eslintconfig
- .eslintexclude
To override ESLint rules for specific files or directories, you can create a .eslintignore file with patterns of the files or directories to be excluded from ESLint linting. The other options are not used for this purpose.
Loading...
Related Quiz
- How can you implement template inheritance in Pug?
- How does the switch statement compare the switch expression with the case expressions in JavaScript?
- To perform an action once a Promise is settled, regardless of its outcome, you can use the .finally() method, which is called on the ________ of a Promise.
- When performing file operations using the fs module, handling ______ errors is crucial to ensure data integrity.
- You are developing a Node.js library intended to be used as a dependency in other projects. How would you utilize the package.json and package-lock.json files to ensure that the consumers of your library do not face any versioning or dependency conflicts?