stylelint
Version:
A mighty, modern CSS linter.
18 lines (14 loc) • 468 B
JavaScript
/* @flow */
;
const _ = require('lodash');
const validateObjectWithArrayProps = require('./validateObjectWithArrayProps');
/**
* Check whether the variable is an object and all it's properties are arrays of string values:
*
* ignoreProperties = {
* value1: ["item11", "item12", "item13"],
* value2: ["item21", "item22", "item23"],
* value3: ["item31", "item32", "item33"],
* }
*/
module.exports = validateObjectWithArrayProps(_.isString);