tools, using **their** supported file formats.
Compatible configuration files can be
-[found here](https://github.com/psf/black/blob/master/docs/compatible_configs/).
+[found here](https://github.com/psf/black/blob/main/docs/compatible_configs/).
### isort
#### Profile
Since version 5.0.0, isort supports
-[profiles](https://pycqa.github.io/isort/docs/configuration/profiles/) to allow easy
+[profiles](https://pycqa.github.io/isort/docs/configuration/profiles.html) to allow easy
interoperability with common code styles. You can set the black profile in any of the
-[config files](https://pycqa.github.io/isort/docs/configuration/config_files/) supported
-by isort. Below, an example for `pyproject.toml`:
+[config files](https://pycqa.github.io/isort/docs/configuration/config_files.html)
+supported by isort. Below, an example for `pyproject.toml`:
```toml
[tool.isort]
<details>
<summary>.isort.cfg</summary>
-```cfg
+```ini
[settings]
profile = black
```
<details>
<summary>setup.cfg</summary>
-```cfg
+```ini
[isort]
profile = black
```
<details>
<summary>setup.cfg</summary>
-```cfg
+```ini
[flake8]
max-line-length = 88
extend-ignore = E203
#### Configuration
```
-disable = C0330, C0326
+disable = C0326, C0330
max-line-length = 88
```
```ini
[MESSAGES CONTROL]
-disable = C0330, C0326
+disable = C0326, C0330
[format]
max-line-length = 88
max-line-length = 88
[pylint.messages_control]
-disable = C0330, C0326
+disable = C0326, C0330
```
</details>
```toml
[tool.pylint.messages_control]
-disable = "C0330, C0326"
+disable = "C0326, C0330"
[tool.pylint.format]
max-line-length = "88"