If your project currently has its own formatting/linting configurations, follow these steps to migrate to the centralized tooling repository.
Delete existing configurations to avoid conflicts:
rm .prettierrc .eslintrc.js .stylelintrc.jsonEnsure you don't have conflicting versions of formatters/linters in your package.json. It's recommended to let the shared configs manage their own sub-dependencies where possible.
Refer to the language-specific integration guides:
If you don't have pre-commit installed, install it:
pip install pre-commit
# or
brew install pre-commitThen create/update .pre-commit-config.yaml as per the template.
Run pre-commit install to set up the git hooks.