@rushstack/eslint-config
Version:
A TypeScript ESLint ruleset designed for large teams and projects
14 lines • 527 B
JavaScript
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
import rushstackPackletsEslintPlugin from '@rushstack/eslint-plugin-packlets';
const config = {
files: ['**/*.ts', '**/*.tsx'],
plugins: {
'@rushstack/packlets': rushstackPackletsEslintPlugin
},
rules: {
'@rushstack/packlets/mechanics': 'warn',
'@rushstack/packlets/circular-deps': 'warn'
}
};
//# sourceMappingURL=packlets.js.map