Metadata-Version: 2.1
Name: prospector-profile-duplicated
Version: 1.6.0
Summary: Profile that can be used to disable the duplicated or conflict rules between Prospector and other tools
Home-page: https://github.com/sbrunner/prospector-profile-duplicated
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
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 Pylint, pyupgrade, Black, isort, docformatter and autoflake and remove conflict or duplicate with them.

## Usage

```yaml
inherits:
  # Get All
  - duplicated
  # Get for individual tools
  - duplicated:black
  - duplicated:isort
  - duplicated:pyupgrade
  - duplicated:pylint
  - duplicated:docformatter
  - duplicated:autoflake
```

## Contributing

Install the pre-commit hooks:

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

