@rushstack/eslint-config
Version:
A TypeScript ESLint ruleset designed for large teams and projects
19 lines • 725 B
JavaScript
;
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
const eslint_plugin_packlets_1 = __importDefault(require("@rushstack/eslint-plugin-packlets"));
const config = {
files: ['**/*.ts', '**/*.tsx'],
plugins: {
'@rushstack/packlets': eslint_plugin_packlets_1.default
},
rules: {
'@rushstack/packlets/mechanics': 'warn',
'@rushstack/packlets/circular-deps': 'warn'
}
};
module.exports = config;
//# sourceMappingURL=packlets.js.map