Metadata-Version: 2.3
Name: prospector-profile-duplicated
Version: 1.10.5
Summary: Profile that can be used to disable the duplicated or conflict rules between Prospector and other tools
License: BSD-2-Clause
Author: Stéphane Brunner
Author-email: stephane.brunner@gmail.com
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: prospector (>=1.15.0)
Project-URL: Homepage, https://github.com/sbrunner/prospector-profile-duplicated
Project-URL: Repository, https://github.com/sbrunner/prospector-profile-duplicated
Description-Content-Type: text/markdown

# Prospector profile duplicate

Profile that can be used to disable the duplicated or conflict rules between Prospector tools and also
external tools like and Black, isort and docformatter.

The profile considers that you are using pyupgrade, Black, isort, docformatter and autoflake or Ruff and remove conflict or duplicate with them.

## Usage

```yaml
inherits:
  # Get Black / isort
  - duplicated
  # Get for individual tools
  - duplicated:black
  - duplicated:isort
  - duplicated:pyupgrade
  - duplicated:docformatter
  - duplicated:pydocstyle
```

## Contributing

Install the pre-commit hooks:

```bash
pip install pre-commit
pre-commit install --allow-missing-config
```

