json-partial
Version:
Parses a json file looking for partials. If found the partial is read and applied to the json file. On exit saves the json with the provided output name.
35 lines (32 loc) • 840 B
JavaScript
module.exports = function (grunt) {
"use strict";
// Initializes the Grunt tasks with the following settings
grunt.initConfig({
jslint: {
all: {
src: [
"./*.js",
"./*.json",
"./*.jsonx"
],
directives: {
node: true,
nomen: true,
indent: 4,
maxlen: 300,
var: true,
predef: [
"YUI",
"Y",
"NAME",
"Handlebars"
]
}
}
}
});
grunt.loadNpmTasks("grunt-jslint");
grunt.registerTask("default", [
"jslint"
]);
};