UNPKG

@rushstack/eslint-config

Version:

A TypeScript ESLint ruleset designed for large teams and projects

15 lines 440 B
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license. // See LICENSE in the project root for license information. import tsdocEslintPlugin from 'eslint-plugin-tsdoc'; const config = [ { files: ['**/*.ts', '**/*.tsx'], plugins: { tsdoc: tsdocEslintPlugin }, rules: { 'tsdoc/syntax': 'warn' } } ]; //# sourceMappingURL=tsdoc.js.map