home
This commit is contained in:
parent
a71a3b5593
commit
cb52890889
16657 changed files with 1483086 additions and 1 deletions
46
home/ags/node_modules/eslint-plugin-es-x/lib/rules/no-regexp-named-capture-groups.js
generated
vendored
Normal file
46
home/ags/node_modules/eslint-plugin-es-x/lib/rules/no-regexp-named-capture-groups.js
generated
vendored
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
/**
|
||||
* @author Toru Nagashima <https://github.com/mysticatea>
|
||||
* See LICENSE file in root directory for full license.
|
||||
*/
|
||||
"use strict"
|
||||
|
||||
const { defineRegExpHandler } = require("../util/define-regexp-handler")
|
||||
|
||||
module.exports = {
|
||||
meta: {
|
||||
docs: {
|
||||
description: "disallow RegExp named capture groups.",
|
||||
category: "ES2018",
|
||||
recommended: false,
|
||||
url: "http://eslint-community.github.io/eslint-plugin-es-x/rules/no-regexp-named-capture-groups.html",
|
||||
},
|
||||
fixable: null,
|
||||
messages: {
|
||||
forbidden: "ES2018 RegExp named capture groups are forbidden.",
|
||||
},
|
||||
schema: [],
|
||||
type: "problem",
|
||||
},
|
||||
create(context) {
|
||||
return defineRegExpHandler(context, (node) => {
|
||||
let found = false
|
||||
return {
|
||||
onCapturingGroupEnter(_start, name) {
|
||||
if (name) {
|
||||
found = true
|
||||
}
|
||||
},
|
||||
onBackreference(_start, _end, ref) {
|
||||
if (typeof ref === "string") {
|
||||
found = true
|
||||
}
|
||||
},
|
||||
onExit() {
|
||||
if (found) {
|
||||
context.report({ node, messageId: "forbidden" })
|
||||
}
|
||||
},
|
||||
}
|
||||
})
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue