initial commit of actions
This commit is contained in:
commit
949ece5785
44660 changed files with 12034344 additions and 0 deletions
28
github/codeql-action-v2/node_modules/eslint-plugin-escompat/lib/rules/no-regexp-s-flag.js
generated
vendored
Normal file
28
github/codeql-action-v2/node_modules/eslint-plugin-escompat/lib/rules/no-regexp-s-flag.js
generated
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
'use strict';
|
||||
|
||||
module.exports = (context, badBrowser) => ({
|
||||
'Literal[regex]'(node) {
|
||||
if (node.regex.flags.includes('s')) {
|
||||
context.report(node, `RegExp "s" flag is not supported in ${badBrowser}`)
|
||||
}
|
||||
},
|
||||
'CallExpression[callee.name="RegExp"], NewExpression[callee.name="RegExp"]'(node) {
|
||||
const [, flags] = node.arguments;
|
||||
if (
|
||||
flags &&
|
||||
(
|
||||
(
|
||||
flags.type === 'Literal' &&
|
||||
typeof flags.value === 'string' &&
|
||||
flags.value.includes('s')
|
||||
) ||
|
||||
(
|
||||
flags.type === 'TemplateLiteral' &&
|
||||
flags.quasis.some(({value: {raw}}) => raw.includes('s'))
|
||||
)
|
||||
)
|
||||
) {
|
||||
context.report(node, `RegExp "s" flag is not supported in ${badBrowser}`)
|
||||
}
|
||||
}
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue