Showing with 6 additions and 4 deletions.
  1. +3 −1 .jshintrc
  2. +2 −2 scss/variables/colors.js
  3. +1 −1 tasks/options/jshint.js
@@ -12,6 +12,8 @@
"trailing": true,
"undef": true,
"unused": true,

"globals": {
"define": true
},
"node": true
}
@@ -32,7 +32,7 @@ var colors = {
"value": "#fadf51",
"name": "Chassis Yellow"
}
}
};
chassis.colors = {
"background": colors[ "chassis-gray-dark" ],
"font": colors[ "chassis-gray-dark" ],
@@ -43,6 +43,6 @@ chassis.colors = {
name: "Chassis - Blockquote color",
value: "#eee"
}
}
};
return chassis;
} ) );
@@ -1,5 +1,5 @@
module.exports = {
files: [ "*.js", "performance/**/*.js", "scss/variables*.js" ],
files: [ "*.js", "performance/**/*.js", "scss/variables/*.js" ],
options: {
jshintrc: ".jshintrc"
}