Skip to content
  • This project
    • Loading...
  • Sign in

John McEleney / casperjs

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • casperjs
  • .jshintconfig
  • Nicolas Perriault's avatar
    refs #246 - jshint added to travis-ci build configuration · 96e37bf1
    96e37bf1
    Nicolas Perriault authored 2012-11-18 20:48:37 +0100
.jshintconfig 527 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
{
    "asi":           true,
    "browser":       true,
    "debug":         true,
    "devel":         true,
    "eqeqeq":        true,
    "evil":          true,
    "maxparams":     5,
    "maxdepth":      3,
    "maxstatements": 15,
    "maxcomplexity": 7,
    "proto":         true,
    "regexdash":     true,
    "strict":        true,
    "sub":           true,
    "trailing":      true,
    "undef":         true,

    "predef"     : [
        "exports",
        "phantom",
        "require",
        "window"
    ]
}