Skip to content

Commit

Permalink
Specify AirBnb javascript style guide
Browse files Browse the repository at this point in the history
  • Loading branch information
mejackreed committed Jul 8, 2015
1 parent 9b18648 commit 61bb087
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .hound.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
ruby:
config_file: .rubocop.yml
javascript:
config_file: .jshintrc
67 changes: 67 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
{
/*
* ENVIRONMENTS
* =================
*/

// Define globals exposed by modern browsers.
"browser": true,

// Define globals exposed by jQuery.
"jquery": true,

// Define globals exposed by Node.js.
"node": true,

// Allow ES6.
"esnext": true,

/*
* ENFORCING OPTIONS
* =================
*/

// Force all variable names to use either camelCase style or UPPER_CASE
// with underscores.
"camelcase": true,

// Prohibit use of == and != in favor of === and !==.
"eqeqeq": true,

// Enforce tab width of 2 spaces.
"indent": 2,

// Prohibit use of a variable before it is defined.
"latedef": true,

// Enforce line length to 80 characters
"maxlen": 80,

// Require capitalized names for constructor functions.
"newcap": true,

// Enforce use of single quotation marks for strings.
"quotmark": "single",

// Enforce placing 'use strict' at the top function scope
"strict": true,

// Prohibit use of explicitly undeclared variables.
"undef": true,

// Warn when variables are defined but never used.
"unused": true,

/*
* RELAXING OPTIONS
* =================
*/

// Suppress warnings about == null comparisons.
"eqnull": true,

// Custom predefined javascript objects that should be defined
"predef": [
"Blacklight"
]
}

0 comments on commit 61bb087

Please sign in to comment.