aboutsummaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2013-09-18 19:50:02 +0300
committerXhmikosR <[email protected]>2013-12-08 12:44:14 +0200
commiteca8ff380388c1187bc2c86e0ae7fa80aa33111e (patch)
tree1169002b77366007abd0be9efff9bf4b85a5b894 /Gruntfile.js
parented63dfd8d301debf35bc93d155dff4527c94388d (diff)
downloadbootstrap-eca8ff380388c1187bc2c86e0ae7fa80aa33111e.tar.xz
bootstrap-eca8ff380388c1187bc2c86e0ae7fa80aa33111e.zip
Use single quotes consistently.
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 3eaaacee9..f7da24f8b 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -1,7 +1,7 @@
/* jshint node: true */
module.exports = function (grunt) {
- "use strict";
+ 'use strict';
// Force use of Unix newlines
grunt.util.linefeed = '\n';
@@ -135,7 +135,7 @@ module.exports = function (grunt) {
copy: {
fonts: {
expand: true,
- src: ["fonts/*"],
+ src: ['fonts/*'],
dest: 'dist/'
}
},
@@ -164,12 +164,12 @@ module.exports = function (grunt) {
options: {
reset: true,
relaxerror: [
- "Bad value X-UA-Compatible for attribute http-equiv on element meta.",
- "Element img is missing required attribute src."
+ 'Bad value X-UA-Compatible for attribute http-equiv on element meta.',
+ 'Element img is missing required attribute src.'
]
},
files: {
- src: ["_gh_pages/**/*.html"]
+ src: ['_gh_pages/**/*.html']
}
},