@@ -209,7 +209,7 @@ export class PythonSettings implements IPythonSettings {
209209 lintOnSave : false , maxNumberOfProblems : 100 ,
210210 mypyArgs : [ ] , mypyEnabled : false , mypyPath : 'mypy' ,
211211 banditArgs : [ ] , banditEnabled : false , banditPath : 'bandit' ,
212- pep8Args : [ ] , pep8Enabled : false , pep8Path : 'pep8 ' ,
212+ pycodestyleArgs : [ ] , pycodestyleEnabled : false , pycodestylePath : 'pycodestyle ' ,
213213 pylamaArgs : [ ] , pylamaEnabled : false , pylamaPath : 'pylama' ,
214214 prospectorArgs : [ ] , prospectorEnabled : false , prospectorPath : 'prospector' ,
215215 pydocstyleArgs : [ ] , pydocstyleEnabled : false , pydocstylePath : 'pydocstyle' ,
@@ -221,7 +221,7 @@ export class PythonSettings implements IPythonSettings {
221221 refactor : DiagnosticSeverity . Hint ,
222222 warning : DiagnosticSeverity . Warning
223223 } ,
224- pep8CategorySeverity : {
224+ pycodestyleCategorySeverity : {
225225 E : DiagnosticSeverity . Error ,
226226 W : DiagnosticSeverity . Warning
227227 } ,
@@ -241,7 +241,7 @@ export class PythonSettings implements IPythonSettings {
241241 } ;
242242 this . linting . pylintPath = getAbsolutePath ( systemVariables . resolveAny ( this . linting . pylintPath ) , workspaceRoot ) ;
243243 this . linting . flake8Path = getAbsolutePath ( systemVariables . resolveAny ( this . linting . flake8Path ) , workspaceRoot ) ;
244- this . linting . pep8Path = getAbsolutePath ( systemVariables . resolveAny ( this . linting . pep8Path ) , workspaceRoot ) ;
244+ this . linting . pycodestylePath = getAbsolutePath ( systemVariables . resolveAny ( this . linting . pycodestylePath ) , workspaceRoot ) ;
245245 this . linting . pylamaPath = getAbsolutePath ( systemVariables . resolveAny ( this . linting . pylamaPath ) , workspaceRoot ) ;
246246 this . linting . prospectorPath = getAbsolutePath ( systemVariables . resolveAny ( this . linting . prospectorPath ) , workspaceRoot ) ;
247247 this . linting . pydocstylePath = getAbsolutePath ( systemVariables . resolveAny ( this . linting . pydocstylePath ) , workspaceRoot ) ;
0 commit comments