Adding new jshint and gitignore from Kibana server project to ease merges

This commit is contained in:
Chris Cowan 2014-09-08 09:55:54 -07:00
parent 48c4a2c49a
commit b24ac94070
3 changed files with 6 additions and 4 deletions

3
.gitignore vendored
View file

@ -1,7 +1,8 @@
.DS_Store
node_modules
src/bower_components
bower_components
**/*.css
trash
build
target
.jruby

View file

@ -21,4 +21,4 @@
- **[test/unit/specs/directives/timepicker.js](https://github.com/elasticsearch/kibana4/blob/master/test/unit/specs/directives/timepicker.js)**
- This should not be needed, timefilter is only included here, it should move
- **[test/unit/specs/directives/typeahead.js](https://github.com/elasticsearch/kibana4/blob/master/test/unit/specs/directives/typeahead.js)**
- This should not be needed, timefilter is only included here, it should move
- This should not be needed, timefilter is only included here, it should move

View file

@ -17,8 +17,9 @@ module.exports = function (grunt) {
ignores: [
'node_modules/*',
'dist/*',
'sample/*'
'sample/*',
'<%= src %>/kibana/bower_components/**/*'
]
}
};
};
};