-
-
Notifications
You must be signed in to change notification settings - Fork 86
Closed
Labels
status: accepting prsPlease, send a pull request to resolve this!Please, send a pull request to resolve this!type: featureNew enhancement or requestNew enhancement or request
Description
Feature Request Checklist
- I have looked at the latest version of the project.
- I have searched for related issues and found none that matched my issue.
Overview
Eslint has a globalIgnores() helper that can be used. By using the helper it protects against some edge cases where global ignores can become local ignores if something else gets added to the object. Using the helper also improves the experience in the eslint config inspector as it allows for passing a name as a second parameter.
- { ignores: ["lib", "node_modules", "pnpm-lock.yaml"] },
+ globalIgnores(["lib", "node_modules", "pnpm-lock.yaml"] , "Global Ignores"),Additional Info
Metadata
Metadata
Assignees
Labels
status: accepting prsPlease, send a pull request to resolve this!Please, send a pull request to resolve this!type: featureNew enhancement or requestNew enhancement or request