@commit-generator/eslint-config
v0.1.0
Published
ESLint configuration package for the Commit Generator project
Downloads
14
Readme
@commit-generator/eslint-config
This package contains a shared ESLint configuration for the Commit Generator project.
Installation
To use the ESLint configuration in your project, install the package as a development dependency:
pnpm install --save-dev @commit-generator/eslint-configUsage
After installation, extend the ESLint configuration in your project.
- Create or update your
eslint.config.mjsfile with the following configuration:
import eslintNode from '@commit-generator/eslint-config/node.js';
export default [...eslintNode];- Customizing the Configuration
If you'd like to customize the configuration, create your own
eslint.config.mjsand extend the default settings:
import eslintNode from '@commit-generator/eslint-config/node.js';
export default [
...eslintNode,
myConfigs
];License
This package is licensed under the MIT License.
