Failed to execute goal org.codehaus.mojo:jslint-maven-plugin:1.0.1:jslint (default) on project wknd-sites-guide.ui.apps: Issues found in project. -> [Help 1]

can someone help me? thanks!

can someone help me? thanks!
JS Lint is more about "Good Parts" of JS(javascript - Does it make any sense to use JSLint and follow it? - Stack Overflow ). It seems the error that it shows is in bootstrap plugin JS. You should exclude plugins from the JS Lint checking. If your bootstrap JS is in one of these folders, it will be ignored. If no, you should add an exclusion rule for the same.
<configuration>
<sourceJsFolder>src/main/content/jcr_root</sourceJsFolder>
<failOnIssues>true</failOnIssues>
<predefinedVars>jQuery,window,$,use,properties,pageProperties,inheritedPageProperties,component,componentContext,currentDesign,currentNode,currentPage,currentSession,currentStyle,designer,editContext,log,out,pageManager,reader,request,resource,resourceDesign,resourcePage,response,sling,slyWcmHelper,wcmmode,xssAPI</predefinedVars>
<excludes>
<exclude>**/extensions/**/*.js</exclude>
<exclude>**/vendor/**/*.js</exclude>
</excludes>
</configuration>
Hope this helps.. ![]()
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.