Sha256: 23af9cfd05f6ce91a061dd262cebdec3f2755667b9781bc7062f68833117a43b

Contents?: true

Size: 1.29 KB

Versions: 23

Compression:

Stored size: 1.29 KB

Contents

'use strict';

const _ = require('lodash');
const isCustomProperty = require('../../utils/isCustomProperty');
const isStandardSyntaxProperty = require('../../utils/isStandardSyntaxProperty');
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 = 'property-blacklist';

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

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

		if (!validOptions) {
			return;
		}

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

			if (!isStandardSyntaxProperty(prop)) {
				return;
			}

			if (isCustomProperty(prop)) {
				return;
			}

			if (!matchesStringOrRegExp(postcss.vendor.unprefixed(prop), blacklist)) {
				return;
			}

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

rule.primaryOptionArray = true;

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/property-blacklist/index.js
trusty-cms-5.0.6 node_modules/stylelint/lib/rules/property-blacklist/index.js
trusty-cms-5.0.5 node_modules/stylelint/lib/rules/property-blacklist/index.js
trusty-cms-5.0.4 node_modules/stylelint/lib/rules/property-blacklist/index.js
trusty-cms-5.0.3 node_modules/stylelint/lib/rules/property-blacklist/index.js
trusty-cms-5.0.2 node_modules/stylelint/lib/rules/property-blacklist/index.js
trusty-cms-5.0.1 node_modules/stylelint/lib/rules/property-blacklist/index.js
trusty-cms-4.3.5 node_modules/stylelint/lib/rules/property-blacklist/index.js
trusty-cms-5.0.0 node_modules/stylelint/lib/rules/property-blacklist/index.js
trusty-cms-4.3.4 node_modules/stylelint/lib/rules/property-blacklist/index.js
trusty-cms-4.3.3 node_modules/stylelint/lib/rules/property-blacklist/index.js
trusty-cms-4.3.2 node_modules/stylelint/lib/rules/property-blacklist/index.js
trusty-cms-4.3.1 node_modules/stylelint/lib/rules/property-blacklist/index.js
trusty-cms-4.3 node_modules/stylelint/lib/rules/property-blacklist/index.js
trusty-cms-4.2.3 node_modules/stylelint/lib/rules/property-blacklist/index.js
trusty-cms-4.2.2 node_modules/stylelint/lib/rules/property-blacklist/index.js
trusty-cms-4.2.1 node_modules/stylelint/lib/rules/property-blacklist/index.js
trusty-cms-4.2 node_modules/stylelint/lib/rules/property-blacklist/index.js
trusty-cms-4.1.9 node_modules/stylelint/lib/rules/property-blacklist/index.js
trusty-cms-4.1.8 node_modules/stylelint/lib/rules/property-blacklist/index.js