UNPKG

@rushstack/eslint-config

Version:

A TypeScript ESLint ruleset designed for large teams and projects

14 lines 506 B
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. // See LICENSE in the project root for license information. import { commonConfig } from './_common'; const config = [ ...commonConfig, { files: ['**/*.ts', '**/*.tsx'], rules: { // This is disabled for trusted tools because the tool is known to be safe. '@rushstack/security/no-unsafe-regexp': 'off' } } ]; //# sourceMappingURL=node-trusted-tool.js.map