b5921136 by bootflat

remove jshint

1 parent 1c1b2d80
1 module.exports = function(grunt) { 1 module.exports = function(grunt) {
2 2
3 grunt.initConfig({ 3 grunt.initConfig({
4 jshint: {
5 files: ['Gruntfile.js', 'js/**/*.js'],
6 options: {
7 jshintrc: '.jshintrc'
8 }
9 },
10 uglify: { 4 uglify: {
11 dist: { 5 dist: {
12 files: { 6 files: {
...@@ -50,7 +44,6 @@ module.exports = function(grunt) { ...@@ -50,7 +44,6 @@ module.exports = function(grunt) {
50 require('load-grunt-tasks')(grunt); 44 require('load-grunt-tasks')(grunt);
51 45
52 grunt.registerTask('default', [ 46 grunt.registerTask('default', [
53 'jshint',
54 'sass', 47 'sass',
55 'cssmin', 48 'cssmin',
56 'uglify' 49 'uglify'
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 2
3 BOOTFLAT is an open source Flat UI KIT based on Bootstrap 3.1.0 CSS framework. It provides a faster, easier and less repetitive way for web developers to create elegant web apps. 3 BOOTFLAT is an open source Flat UI KIT based on Bootstrap 3.1.0 CSS framework. It provides a faster, easier and less repetitive way for web developers to create elegant web apps.
4 4
5 Bootflat is built on the foundations of Bootstrap, visioned in a stunning flat design. Bootstrap itself is a trusted, reliable and proven tool for developers. Built with `Sass`. 5 Bootflat is built on the foundations of Bootstrap, visioned in a stunning flat design. Bootstrap itself is a trusted, reliable and proven tool for developers. Built with `Sass 3.3.0.rc.2`.
6 6
7 Bootflat is compatible with the following browsers: `IE8, IE9, IE10, Firefox, Safari, Opera, Chrome`. 7 Bootflat is compatible with the following browsers: `IE8, IE9, IE10, Firefox, Safari, Opera, Chrome`.
8 8
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
2 "name": "Bootflat", 2 "name": "Bootflat",
3 "private": false, 3 "private": false,
4 "version": "2.0.0", 4 "version": "2.0.0",
5 "description": "BOOTFLAT is an open source Flat UI KIT based on Twitter Bootstrap 3.1.0 css framework. It provides a faster, easier and less repetitive way for web developers to create elegant web app.", 5 "description": "BOOTFLAT is an open source Flat UI KIT based on Bootstrap 3.1.0 CSS framework. It provides a faster, easier and less repetitive way for web developers to create elegant web apps.",
6 "author":"Flathemes", 6 "author":"Flathemes",
7 "license": "MIT", 7 "license": "MIT",
8 "devDependencies": { 8 "devDependencies": {
...@@ -11,7 +11,6 @@ ...@@ -11,7 +11,6 @@
11 "grunt-contrib-copy": "~0.4.1", 11 "grunt-contrib-copy": "~0.4.1",
12 "grunt-contrib-concat": "~0.3.0", 12 "grunt-contrib-concat": "~0.3.0",
13 "grunt-contrib-uglify": "~0.2.4", 13 "grunt-contrib-uglify": "~0.2.4",
14 "grunt-contrib-jshint": "~0.6.4",
15 "grunt-contrib-sass": "~0.5.0", 14 "grunt-contrib-sass": "~0.5.0",
16 "load-grunt-tasks": "~0.2.0" 15 "load-grunt-tasks": "~0.2.0"
17 } 16 }
......