Click here to Skip to main content
15,881,882 members
Articles / Programming Languages / Javascript

JSLint.VS - JavaScript Verifier for Visual Studio

Rate me:
Please Sign up or sign in to vote.
4.88/5 (29 votes)
9 Nov 2009CPOL5 min read 193.7K   964   82  
A Visual Studio add-in that uses JSLint to verify JavaScript files that are part of a solution.
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
    <configSections>
        <sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
            <section name="JSLint.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
        </sectionGroup>
    </configSections>
    <userSettings>
        <JSLint.Properties.Settings>
            <setting name="IntegrateWithBuild" serializeAs="String">
                <value>False</value>
            </setting>
            <setting name="StopBuildOnErrors" serializeAs="String">
                <value>False</value>
            </setting>
            <setting name="DontCheckWholeSolution" serializeAs="String">
                <value>True</value>
            </setting>
            <setting name="SelectedOptions" serializeAs="String">
                <value>eqeqeq, nomen, undef, white</value>
            </setting>
            <setting name="CheckingScope" serializeAs="String">
                <value />
            </setting>
            <setting name="JSLintProcessWaitTime" serializeAs="String">
                <value>10</value>
            </setting>
        </JSLint.Properties.Settings>
    </userSettings>
</configuration>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer
United States United States
If you liked this article, consider reading other articles by me. For republishing article on other websites, please contact me by leaving a comment.

Comments and Discussions