UNPKG

@tangany/eslint-config

Version:
24 lines (18 loc) 1.07 kB
# Tangany ESLint Config A comprehensive, opinionated ESLint configuration to standardize and enforce code quality and style across JavaScript & TypeScript projects. This configuration promotes best practices, consistency, and readability, making it easy for teams to work together and maintain a high code quality standard. Features - Best Practices: Enforces a wide range of ESLint rules, including recommended rules for JavaScript and TypeScript (if applicable). - Code Consistency: Ensures consistent code style across projects by enforcing formatting and style rules. - Customizable: Built with flexibility in mind. Override or extend specific rules to suit your project’s unique needs. - Compatibility: Works well with various JavaScript environments, including Node.js, browser-based apps. ## Installation To use @tangany/eslint-config, install it as a dependency in your project: ```bash npm install --save-dev @tangany/eslint-config ``` Then, extend the configuration in your .eslint.config.mjs file: ```js export default [ ...tanganyConfig, ]; ```