| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 | 
							- 'use strict';
 
- const isStandardSyntaxAtRule = require('../../utils/isStandardSyntaxAtRule');
 
- const isStandardSyntaxRule = require('../../utils/isStandardSyntaxRule');
 
- const report = require('../../utils/report');
 
- const ruleMessages = require('../../utils/ruleMessages');
 
- const styleSearch = require('style-search');
 
- const validateOptions = require('../../utils/validateOptions');
 
- const { isAtRule } = require('../../utils/typeGuards');
 
- const ruleName = 'no-extra-semicolons';
 
- const messages = ruleMessages(ruleName, {
 
- 	rejected: 'Unexpected extra semicolon',
 
- });
 
- const meta = {
 
- 	url: 'https://stylelint.io/user-guide/rules/no-extra-semicolons',
 
- 	fixable: true,
 
- };
 
- /**
 
-  * @param {import('postcss').Node} node
 
-  * @returns {number}
 
-  */
 
- function getOffsetByNode(node) {
 
- 	// @ts-expect-error -- TS2339: Property 'document' does not exist on type 'Document | Container<ChildNode>'
 
- 	if (node.parent && node.parent.document) {
 
- 		return 0;
 
- 	}
 
- 	const root = node.root();
 
- 	if (!root.source) throw new Error('The root node must have a source');
 
- 	if (!node.source) throw new Error('The node must have a source');
 
- 	if (!node.source.start) throw new Error('The source must have a start position');
 
- 	const string = root.source.input.css;
 
- 	const nodeColumn = node.source.start.column;
 
- 	const nodeLine = node.source.start.line;
 
- 	let line = 1;
 
- 	let column = 1;
 
- 	let index = 0;
 
- 	for (let i = 0; i < string.length; i++) {
 
- 		if (column === nodeColumn && nodeLine === line) {
 
- 			index = i;
 
- 			break;
 
- 		}
 
- 		if (string[i] === '\n') {
 
- 			column = 1;
 
- 			line += 1;
 
- 		} else {
 
- 			column += 1;
 
- 		}
 
- 	}
 
- 	return index;
 
- }
 
- /** @type {import('stylelint').Rule} */
 
- const rule = (primary, _secondaryOptions, context) => {
 
- 	return (root, result) => {
 
- 		const validOptions = validateOptions(result, ruleName, { actual: primary });
 
- 		if (!validOptions) {
 
- 			return;
 
- 		}
 
- 		if (root.raws.after && root.raws.after.trim().length !== 0) {
 
- 			const rawAfterRoot = root.raws.after;
 
- 			/** @type {number[]} */
 
- 			const fixSemiIndices = [];
 
- 			styleSearch({ source: rawAfterRoot, target: ';' }, (match) => {
 
- 				if (context.fix) {
 
- 					fixSemiIndices.push(match.startIndex);
 
- 					return;
 
- 				}
 
- 				if (!root.source) throw new Error('The root node must have a source');
 
- 				complain(root.source.input.css.length - rawAfterRoot.length + match.startIndex);
 
- 			});
 
- 			// fix
 
- 			if (fixSemiIndices.length) {
 
- 				root.raws.after = removeIndices(rawAfterRoot, fixSemiIndices);
 
- 			}
 
- 		}
 
- 		root.walk((node) => {
 
- 			if (isAtRule(node) && !isStandardSyntaxAtRule(node)) {
 
- 				return;
 
- 			}
 
- 			if (node.type === 'rule' && !isStandardSyntaxRule(node)) {
 
- 				return;
 
- 			}
 
- 			if (node.raws.before && node.raws.before.trim().length !== 0) {
 
- 				const rawBeforeNode = node.raws.before;
 
- 				const allowedSemi = 0;
 
- 				const rawBeforeIndexStart = 0;
 
- 				/** @type {number[]} */
 
- 				const fixSemiIndices = [];
 
- 				styleSearch({ source: rawBeforeNode, target: ';' }, (match, count) => {
 
- 					if (count === allowedSemi) {
 
- 						return;
 
- 					}
 
- 					if (context.fix) {
 
- 						fixSemiIndices.push(match.startIndex - rawBeforeIndexStart);
 
- 						return;
 
- 					}
 
- 					complain(getOffsetByNode(node) - rawBeforeNode.length + match.startIndex);
 
- 				});
 
- 				// fix
 
- 				if (fixSemiIndices.length) {
 
- 					node.raws.before = removeIndices(rawBeforeNode, fixSemiIndices);
 
- 				}
 
- 			}
 
- 			if (typeof node.raws.after === 'string' && node.raws.after.trim().length !== 0) {
 
- 				const rawAfterNode = node.raws.after;
 
- 				/**
 
- 				 * If the last child is a Less mixin followed by more than one semicolon,
 
- 				 * node.raws.after will be populated with that semicolon.
 
- 				 * Since we ignore Less mixins, exit here
 
- 				 */
 
- 				if (
 
- 					'last' in node &&
 
- 					node.last &&
 
- 					node.last.type === 'atrule' &&
 
- 					!isStandardSyntaxAtRule(node.last)
 
- 				) {
 
- 					return;
 
- 				}
 
- 				/** @type {number[]} */
 
- 				const fixSemiIndices = [];
 
- 				styleSearch({ source: rawAfterNode, target: ';' }, (match) => {
 
- 					if (context.fix) {
 
- 						fixSemiIndices.push(match.startIndex);
 
- 						return;
 
- 					}
 
- 					const index =
 
- 						getOffsetByNode(node) +
 
- 						node.toString().length -
 
- 						1 -
 
- 						rawAfterNode.length +
 
- 						match.startIndex;
 
- 					complain(index);
 
- 				});
 
- 				// fix
 
- 				if (fixSemiIndices.length) {
 
- 					node.raws.after = removeIndices(rawAfterNode, fixSemiIndices);
 
- 				}
 
- 			}
 
- 			if (typeof node.raws.ownSemicolon === 'string') {
 
- 				const rawOwnSemicolon = node.raws.ownSemicolon;
 
- 				const allowedSemi = 0;
 
- 				/** @type {number[]} */
 
- 				const fixSemiIndices = [];
 
- 				styleSearch({ source: rawOwnSemicolon, target: ';' }, (match, count) => {
 
- 					if (count === allowedSemi) {
 
- 						return;
 
- 					}
 
- 					if (context.fix) {
 
- 						fixSemiIndices.push(match.startIndex);
 
- 						return;
 
- 					}
 
- 					const index =
 
- 						getOffsetByNode(node) +
 
- 						node.toString().length -
 
- 						rawOwnSemicolon.length +
 
- 						match.startIndex;
 
- 					complain(index);
 
- 				});
 
- 				// fix
 
- 				if (fixSemiIndices.length) {
 
- 					node.raws.ownSemicolon = removeIndices(rawOwnSemicolon, fixSemiIndices);
 
- 				}
 
- 			}
 
- 		});
 
- 		/**
 
- 		 * @param {number} index
 
- 		 */
 
- 		function complain(index) {
 
- 			report({
 
- 				message: messages.rejected,
 
- 				node: root,
 
- 				index,
 
- 				result,
 
- 				ruleName,
 
- 			});
 
- 		}
 
- 		/**
 
- 		 * @param {string} str
 
- 		 * @param {number[]} indices
 
- 		 * @returns {string}
 
- 		 */
 
- 		function removeIndices(str, indices) {
 
- 			for (const index of indices.reverse()) {
 
- 				str = str.slice(0, index) + str.slice(index + 1);
 
- 			}
 
- 			return str;
 
- 		}
 
- 	};
 
- };
 
- rule.ruleName = ruleName;
 
- rule.messages = messages;
 
- rule.meta = meta;
 
- module.exports = rule;
 
 
  |