Skip to content

Instantly share code, notes, and snippets.

@gwenaelp
Created May 19, 2014 14:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gwenaelp/ad33d6b9b9555da0195e to your computer and use it in GitHub Desktop.
Save gwenaelp/ad33d6b9b9555da0195e to your computer and use it in GitHub Desktop.
Canopsis coding style tools configuration
{
"browser": true, //let jshint know about browser variables
"jquery": true, //let jshint know about jquery variables
"globals": {}, //let jshint know about browser variables
"globalstrict": false, //don't necessarly use strict keywords
"quotmark": false, //don't warn on double quotes usage
"smarttabs": true,
"trailing": true,
"undef": true, //warn on undefined variables
"unused": true, //warn on unused variables
/* Global variables used in the project. Feel free to add stuff in here */
"globals": {
"define": false,
"console": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment