@@ -60,7 +60,7 @@ export interface ILintingSettings {
6060 pylintPath : string ;
6161 pep8Path : string ;
6262 flake8Path : string ;
63- pydocStylePath : string ;
63+ pydocstylePath : string ;
6464 outputWindow : string ;
6565 mypyEnabled : boolean ;
6666 mypyArgs : string [ ] ;
@@ -138,7 +138,7 @@ export class PythonSettings extends EventEmitter implements IPythonSettings {
138138 mypyArgs : [ ] , mypyEnabled : false , mypyPath : 'mypy' ,
139139 outputWindow : 'python' , pep8Args : [ ] , pep8Enabled : false , pep8Path : 'pep8' ,
140140 prospectorArgs : [ ] , prospectorEnabled : false , prospectorPath : 'prospector' ,
141- pydocstyleArgs : [ ] , pydocstyleEnabled : false , pydocStylePath : 'pydocstyle' ,
141+ pydocstyleArgs : [ ] , pydocstyleEnabled : false , pydocstylePath : 'pydocstyle' ,
142142 pylintArgs : [ ] , pylintEnabled : false , pylintPath : 'pylint' ,
143143 pylintCategorySeverity : {
144144 convention : vscode . DiagnosticSeverity . Hint ,
@@ -152,7 +152,7 @@ export class PythonSettings extends EventEmitter implements IPythonSettings {
152152 this . linting . flake8Path = getAbsolutePath ( this . linting . flake8Path , workspaceRoot ) ;
153153 this . linting . pep8Path = getAbsolutePath ( this . linting . pep8Path , workspaceRoot ) ;
154154 this . linting . prospectorPath = getAbsolutePath ( this . linting . prospectorPath , workspaceRoot ) ;
155- this . linting . pydocStylePath = getAbsolutePath ( this . linting . pydocStylePath , workspaceRoot ) ;
155+ this . linting . pydocstylePath = getAbsolutePath ( this . linting . pydocstylePath , workspaceRoot ) ;
156156
157157 let formattingSettings = systemVariables . resolveAny ( pythonSettings . get < IFormattingSettings > ( 'formatting' ) ) ;
158158 if ( this . formatting ) {
0 commit comments