home
This commit is contained in:
parent
a71a3b5593
commit
cb52890889
16657 changed files with 1483086 additions and 1 deletions
49
home/ags/node_modules/eslint-plugin-es-x/lib/rules/no-string-create-html-methods.js
generated
vendored
Normal file
49
home/ags/node_modules/eslint-plugin-es-x/lib/rules/no-string-create-html-methods.js
generated
vendored
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
"use strict"
|
||||
|
||||
const {
|
||||
definePrototypeMethodHandler,
|
||||
} = require("../util/define-prototype-method-handler")
|
||||
|
||||
module.exports = {
|
||||
meta: {
|
||||
docs: {
|
||||
description: "disallow HTML creation methods of string instances.",
|
||||
category: "legacy",
|
||||
recommended: false,
|
||||
url: "http://eslint-community.github.io/eslint-plugin-es-x/rules/no-string-create-html-methods.html",
|
||||
},
|
||||
fixable: null,
|
||||
messages: {
|
||||
forbidden: "Annex B feature '{{name}}' method is forbidden.",
|
||||
},
|
||||
schema: [
|
||||
{
|
||||
type: "object",
|
||||
properties: {
|
||||
aggressive: { type: "boolean" },
|
||||
},
|
||||
additionalProperties: false,
|
||||
},
|
||||
],
|
||||
type: "problem",
|
||||
},
|
||||
create(context) {
|
||||
return definePrototypeMethodHandler(context, {
|
||||
String: [
|
||||
"anchor",
|
||||
"big",
|
||||
"blink",
|
||||
"bold",
|
||||
"fixed",
|
||||
"fontcolor",
|
||||
"fontsize",
|
||||
"italics",
|
||||
"link",
|
||||
"small",
|
||||
"strike",
|
||||
"sub",
|
||||
"sup",
|
||||
],
|
||||
})
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue