A collection of custom ESLint rules for enforcing project-specific coding standards.
npm installTo use these custom rules in your project:
- Install the package
- Configure your ESLint configuration file to reference these rules
- Run ESLint on your codebase
- enforce-default-undefined: Ensures that default values in nullish coalescing operations are set to undefined. (e.g., const value = data?.key ?? undefined;)