You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ Once installed, do remember to [configure the path](https://github.com/DonJayama
7
7
If you're working in a [virtualenv](https://virtualenv.readthedocs.org/), you can reference the `python` interpreter from your virtualenv (ie `~/.virtualenvs/XXX/bin/python`).
8
8
9
9
##Features
10
-
* Linting (PyLint, Pep8, Flake8, pydocstyle with config files and plugins)
10
+
* Linting (Prospector, PyLint, Pep8, Flake8, pydocstyle with config files and plugins)
11
11
* Intellisense and autocompletion
12
12
* Auto indenting
13
13
* Code formatting (autopep8, yapf, with config files)
@@ -54,6 +54,7 @@ If you're working in a [virtualenv](https://virtualenv.readthedocs.org/), you ca
54
54
+ pep8 can be turned on/off (default is off), supports standard configuaration files
55
55
+ flake8 can be turned on/off (default is on), supports standard configuaration files
56
56
+ pydocstyle can be turned on/off (default is on), supports standard configuaration files
57
+
+ prospector can be turned on/off (default is on)
57
58
+ Different categories of errors reported by pylint can be configured as warnings, errors, information or hits
58
59
+ Path to pylint, pep8 and flake8 and pep8 can be configured
59
60
+ Custom plugins such as pylint plugin for Django can be easily used by modifying the settings as follows:
@@ -101,6 +102,8 @@ If you're working in a [virtualenv](https://virtualenv.readthedocs.org/), you ca
101
102
+ pip install flake8
102
103
* pydocstyle is installed for linting (optional)
103
104
+ pip install pydocstyle
105
+
* prospector is installed for linting (optional)
106
+
+ pip install prospector
104
107
* Autopep8 is installed for code formatting (optional)
105
108
+ pip install pep8
106
109
+ pip install --upgrade autopep8
@@ -111,6 +114,10 @@ If you're working in a [virtualenv](https://virtualenv.readthedocs.org/), you ca
111
114
112
115
## Change Log
113
116
117
+
### Version 0.3.8
118
+
* Added support for linting using prospector [#130](https://github.com/DonJayamanne/pythonVSCode/pull/130)
119
+
* Fixed issue where environment variables weren't being inherited by the debugger [#109](https://github.com/DonJayamanne/pythonVSCode/issues/109) and [#77](https://github.com/DonJayamanne/pythonVSCode/issues/77)
120
+
114
121
### Version 0.3.7
115
122
* Added support for auto indenting of some keywords [#83](https://github.com/DonJayamanne/pythonVSCode/issues/83)
116
123
* Added support for launching console apps for Mac [#128](https://github.com/DonJayamanne/pythonVSCode/issues/128)
0 commit comments