-
-
Notifications
You must be signed in to change notification settings - Fork 617
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
isort does not respect skip and skip_glob configuration options.
To Reproduce
Steps to reproduce the behavior:
- Create
file.pywith the following content:import os, \ sys
- Create
.isort.cfgwith the following content:[settings] skip_glob = file.py - Run
isort file.py. - Open
file.pyand check out it's content to become:import os import sys
Expected behavior
A file.py is skipped and is not touched.
Screenshots
—
Environment (please complete the following information):
- OS: Linux
- Python version: 3.7.2
- isort version: 4.3.11
Additional context
isort 4.3.10 is working correctly. Issue can be reproduced with skip option as well.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working