Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/stylelint/lib/rules/comment-empty-line-before/index.js')
-rw-r--r--assets/node_modules/stylelint/lib/rules/comment-empty-line-before/index.js117
1 files changed, 0 insertions, 117 deletions
diff --git a/assets/node_modules/stylelint/lib/rules/comment-empty-line-before/index.js b/assets/node_modules/stylelint/lib/rules/comment-empty-line-before/index.js
deleted file mode 100644
index b6f87e5..0000000
--- a/assets/node_modules/stylelint/lib/rules/comment-empty-line-before/index.js
+++ /dev/null
@@ -1,117 +0,0 @@
-'use strict';
-
-const addEmptyLineBefore = require('../../utils/addEmptyLineBefore');
-const hasEmptyLine = require('../../utils/hasEmptyLine');
-const isAfterComment = require('../../utils/isAfterComment');
-const isFirstNested = require('../../utils/isFirstNested');
-const isFirstNodeOfRoot = require('../../utils/isFirstNodeOfRoot');
-const isSharedLineComment = require('../../utils/isSharedLineComment');
-const optionsMatches = require('../../utils/optionsMatches');
-const removeEmptyLinesBefore = require('../../utils/removeEmptyLinesBefore');
-const report = require('../../utils/report');
-const ruleMessages = require('../../utils/ruleMessages');
-const validateOptions = require('../../utils/validateOptions');
-
-const ruleName = 'comment-empty-line-before';
-
-const messages = ruleMessages(ruleName, {
- expected: 'Expected empty line before comment',
- rejected: 'Unexpected empty line before comment',
-});
-
-const stylelintCommandPrefix = 'stylelint-';
-
-function rule(expectation, options, context) {
- return (root, result) => {
- const validOptions = validateOptions(
- result,
- ruleName,
- {
- actual: expectation,
- possible: ['always', 'never'],
- },
- {
- actual: options,
- possible: {
- except: ['first-nested'],
- ignore: ['stylelint-commands', 'after-comment'],
- },
- optional: true,
- },
- );
-
- if (!validOptions) {
- return;
- }
-
- root.walkComments((comment) => {
- // Ignore the first node
- if (isFirstNodeOfRoot(comment)) {
- return;
- }
-
- // Optionally ignore stylelint commands
- if (
- comment.text.startsWith(stylelintCommandPrefix) &&
- optionsMatches(options, 'ignore', 'stylelint-commands')
- ) {
- return;
- }
-
- // Optionally ignore newlines between comments
- if (optionsMatches(options, 'ignore', 'after-comment') && isAfterComment(comment)) {
- return;
- }
-
- // Ignore shared-line comments
- if (isSharedLineComment(comment)) {
- return;
- }
-
- // Ignore SCSS comments
- if (comment.raws.inline || comment.inline) {
- return;
- }
-
- const expectEmptyLineBefore = (() => {
- if (optionsMatches(options, 'except', 'first-nested') && isFirstNested(comment)) {
- return false;
- }
-
- return expectation === 'always';
- })();
-
- const before = comment.raws.before || '';
- const hasEmptyLineBefore = hasEmptyLine(before);
-
- // Return if the expectation is met
- if (expectEmptyLineBefore === hasEmptyLineBefore) {
- return;
- }
-
- // Fix
- if (context.fix) {
- if (expectEmptyLineBefore) {
- addEmptyLineBefore(comment, context.newline);
- } else {
- removeEmptyLinesBefore(comment, context.newline);
- }
-
- return;
- }
-
- const message = expectEmptyLineBefore ? messages.expected : messages.rejected;
-
- report({
- message,
- node: comment,
- result,
- ruleName,
- });
- });
- };
-}
-
-rule.ruleName = ruleName;
-rule.messages = messages;
-module.exports = rule;