Skip to content

Instantly share code, notes, and snippets.

@spencern
Created July 16, 2014 18:18
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 spencern/89afdbfd4a0fdc070976 to your computer and use it in GitHub Desktop.
Save spencern/89afdbfd4a0fdc070976 to your computer and use it in GitHub Desktop.
Example config/application.js file for LinemanJS
module.exports = function(lineman) {
//Override application configuration here. Common examples follow in the comments.
return {
jshint: {
options: {
'node': true,
'browser': true,
'esnext': true,
'bitwise': true,
'camelcase': true,
'curly': true,
'devel': true,
'globalstrict': true,
'eqeqeq': true,
'immed': true,
'latedef': true,
'newcap': true,
'noarg': true,
'quotmark': 'single',
'regexp': true,
'undef': true,
'unused': false,
'strict': true,
'trailing': true,
'smarttabs': true,
'globals': {
'angular': false,
'$': false,
'_': false,
'Bloodhound': false
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment