@rushstack/eslint-plugin-security
Version:
An ESLint plugin providing rules that identify common security vulnerabilities for browser applications, Node.js tools, and Node.js services
12 lines • 445 B
JavaScript
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
const no_unsafe_regexp_1 = require("./no-unsafe-regexp");
const plugin = {
rules: {
// Full name: "@rushstack/security/no-unsafe-regexp"
'no-unsafe-regexp': no_unsafe_regexp_1.noUnsafeRegExp
}
};
module.exports = plugin;
//# sourceMappingURL=index.js.map
;