Skip to content

Commit 53fb1b2

Browse files
committed
Remove need to use --load-plugins
Add pylint_quotes to .pylintrc so that it's invoked even without `--load-plugins pylint_quotes`
1 parent 23f87f7 commit 53fb1b2

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.pylintrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[MASTER]
22
ignore = ,input
33
persistent = yes
4+
load-plugins = pylint_quotes
45

56
[MESSAGES CONTROL]
67
disable =

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ python:
55
install:
66
- "pip install -r requirements.txt"
77
script:
8-
- "pylint --load-plugins pylint_quotes selections"
8+
- "pylint selections"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Please run pylint locally before making your PR, it will help save you some time
3636

3737
To run pylint use this command:
3838
```bash
39-
pylint --load-plugins pylint_quotes selections
39+
pylint selections
4040
```
4141

4242
## Administration

0 commit comments

Comments
 (0)