Anyone know how to make JSLint work from the Tools menu?

Anyone know how to make JSLint work from the Tools menu?

2
NewbieNewbie
2

    Apr 27, 2006#1

    I can enter the command line (with paths adjusted for my machine) given at JSlint's doc page into the tool configuration dialog but it doesn't scan the current file in UE.

    You can find JSLint here: JSLint

    BTW - I have enabled JSLint in Visual Studio and it works fine there.

    Any other suggestions on JavaScript syntax checking programs also happily accepted.

    Thanks for any help,
    Greg

    20
    Basic UserBasic User
    20

      Apr 28, 2006#2

      command line:
      %jslint dir%\jsl.exe -conf "%jslint dir%\%your config file%" -process %n%e

      working dir:
      %P

      options:
      Dos program
      save active file

      command output:
      output to list box
      show dox box
      capture output

      If you want to be able to double click the error add jump to it in the file replace the default output with:
      +output-format __FILENAME__(__LINE__) __ERROR__
      -context
      A source of incoherent bullshit since 1986

      2
      NewbieNewbie
      2

        Apr 28, 2006#3

        That got it Acid...Thanks...saved me a buncha time

        20
        Basic UserBasic User
        20

          Apr 28, 2006#4

          no probs
          A source of incoherent bullshit since 1986

          19
          Basic UserBasic User
          19

            Feb 04, 2012#5

            Thanks for sharing