Permalink
Cannot retrieve contributors at this time
55 lines (52 sloc)
1.82 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/eslint-plugin-jsx-a11y/lib/rules/no-distracting-elements.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault"); | |
Object.defineProperty(exports, "__esModule", { | |
value: true | |
}); | |
exports["default"] = void 0; | |
var _schemas = require("../util/schemas"); | |
var _getElementType = _interopRequireDefault(require("../util/getElementType")); | |
/** | |
* @fileoverview Enforce distracting elements are not used. | |
* @author Ethan Cohen | |
*/ | |
// ---------------------------------------------------------------------------- | |
// Rule Definition | |
// ---------------------------------------------------------------------------- | |
var errorMessage = function errorMessage(element) { | |
return "Do not use <".concat(element, "> elements as they can create visual accessibility issues and are deprecated."); | |
}; | |
var DEFAULT_ELEMENTS = ['marquee', 'blink']; | |
var schema = (0, _schemas.generateObjSchema)({ | |
elements: (0, _schemas.enumArraySchema)(DEFAULT_ELEMENTS) | |
}); | |
var _default = { | |
meta: { | |
docs: { | |
url: 'https://github.com/jsx-eslint/eslint-plugin-jsx-a11y/tree/HEAD/docs/rules/no-distracting-elements.md', | |
description: 'Enforce distracting elements are not used.' | |
}, | |
schema: [schema] | |
}, | |
create: function create(context) { | |
var elementType = (0, _getElementType["default"])(context); | |
return { | |
JSXOpeningElement: function JSXOpeningElement(node) { | |
var options = context.options[0] || {}; | |
var elementOptions = options.elements || DEFAULT_ELEMENTS; | |
var type = elementType(node); | |
var distractingElement = elementOptions.find(function (element) { | |
return type === element; | |
}); | |
if (distractingElement) { | |
context.report({ | |
node, | |
message: errorMessage(distractingElement) | |
}); | |
} | |
} | |
}; | |
} | |
}; | |
exports["default"] = _default; | |
module.exports = exports.default; |