Sha256: aafd54e075ada6b05ab2618b207478a55afeea634302738f61baef4df7db13ee

Contents?: true

Size: 1.3 KB

Versions: 23

Compression:

Stored size: 1.3 KB

Contents

'use strict';

const _ = require('lodash');
const matchesStringOrRegExp = require('../../utils/matchesStringOrRegExp');
const postcss = require('postcss');
const report = require('../../utils/report');
const ruleMessages = require('../../utils/ruleMessages');
const validateOptions = require('../../utils/validateOptions');

const ruleName = 'declaration-property-value-blacklist';

const messages = ruleMessages(ruleName, {
	rejected: (property, value) => `Unexpected value "${value}" for property "${property}"`,
});

function rule(blacklist) {
	return (root, result) => {
		const validOptions = validateOptions(result, ruleName, {
			actual: blacklist,
			possible: [_.isObject],
		});

		if (!validOptions) {
			return;
		}

		root.walkDecls((decl) => {
			const prop = decl.prop;
			const value = decl.value;

			const unprefixedProp = postcss.vendor.unprefixed(prop);
			const propBlacklist = _.find(blacklist, (list, propIdentifier) =>
				matchesStringOrRegExp(unprefixedProp, propIdentifier),
			);

			if (_.isEmpty(propBlacklist)) {
				return;
			}

			if (!matchesStringOrRegExp(value, propBlacklist)) {
				return;
			}

			report({
				message: messages.rejected(prop, value),
				node: decl,
				result,
				ruleName,
			});
		});
	};
}

rule.ruleName = ruleName;
rule.messages = messages;
module.exports = rule;

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
trusty-cms-5.0.7 node_modules/stylelint/lib/rules/declaration-property-value-blacklist/index.js
trusty-cms-5.0.6 node_modules/stylelint/lib/rules/declaration-property-value-blacklist/index.js
trusty-cms-5.0.5 node_modules/stylelint/lib/rules/declaration-property-value-blacklist/index.js
trusty-cms-5.0.4 node_modules/stylelint/lib/rules/declaration-property-value-blacklist/index.js
trusty-cms-5.0.3 node_modules/stylelint/lib/rules/declaration-property-value-blacklist/index.js
trusty-cms-5.0.2 node_modules/stylelint/lib/rules/declaration-property-value-blacklist/index.js
trusty-cms-5.0.1 node_modules/stylelint/lib/rules/declaration-property-value-blacklist/index.js
trusty-cms-4.3.5 node_modules/stylelint/lib/rules/declaration-property-value-blacklist/index.js
trusty-cms-5.0.0 node_modules/stylelint/lib/rules/declaration-property-value-blacklist/index.js
trusty-cms-4.3.4 node_modules/stylelint/lib/rules/declaration-property-value-blacklist/index.js
trusty-cms-4.3.3 node_modules/stylelint/lib/rules/declaration-property-value-blacklist/index.js
trusty-cms-4.3.2 node_modules/stylelint/lib/rules/declaration-property-value-blacklist/index.js
trusty-cms-4.3.1 node_modules/stylelint/lib/rules/declaration-property-value-blacklist/index.js
trusty-cms-4.3 node_modules/stylelint/lib/rules/declaration-property-value-blacklist/index.js
trusty-cms-4.2.3 node_modules/stylelint/lib/rules/declaration-property-value-blacklist/index.js
trusty-cms-4.2.2 node_modules/stylelint/lib/rules/declaration-property-value-blacklist/index.js
trusty-cms-4.2.1 node_modules/stylelint/lib/rules/declaration-property-value-blacklist/index.js
trusty-cms-4.2 node_modules/stylelint/lib/rules/declaration-property-value-blacklist/index.js
trusty-cms-4.1.9 node_modules/stylelint/lib/rules/declaration-property-value-blacklist/index.js
trusty-cms-4.1.8 node_modules/stylelint/lib/rules/declaration-property-value-blacklist/index.js