1 classdef MCodeQualityUtils
3 function varargout=mlintScanAll()
4 import
mxberry.selfmnt.OwnPathUtils;
5 [dirList,patternToExclude]=...
6 OwnPathUtils.getOwnCodeDirList();
9 mxberry.dev.MLintScanner.scanWithHtmlReport(dirList,...
12 varargout=cell(1,nargout);
15 dirList,patternToExclude);
18 function fileList=smartIdentAll()
22 cellfun(@applySmartIndent,fileList);
26 function applySmartIndent(fileName)
27 h = matlab.desktop.editor.openDocument(fileName);
28 h.smartIndentContents();
function scanWithHtmlReport(in dirList, in patternToExclude)