Commit 939c9590 authored by Mark Otto's avatar Mark Otto

Merge branch '3.0.0-wip' of github.com:twbs/bootstrap into 3.0.0-wip

parents 7b6f85c1 908f4c34
/* jshint node: true */
module.exports = function(grunt) {
"use strict";
// Project configuration.
grunt.initConfig({
......@@ -26,6 +28,7 @@ module.exports = function(grunt) {
},
jshint: {
options: {
ignores: [],// HACK: workaround https://github.com/gruntjs/grunt-contrib-jshint/issues/86
jshintrc: 'js/.jshintrc'
},
gruntfile: {
......
......@@ -3,9 +3,11 @@
"laxcomma" : true,
"laxbreak" : true,
"browser" : true,
"eqeqeq" : false,
"eqnull" : true,
"debug" : true,
"devel" : true,
"curly" : false,
"boss" : true,
"expr" : true,
"asi" : true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment