Spaces:
Sleeping
Sleeping
File size: 1,088 Bytes
cc651f6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
// This is a workaround for https://github.com/eslint/eslint/issues/3458
require('@rushstack/heft-node-rig/profiles/default/includes/eslint/patch/modern-module-resolution');
// This is a workaround for https://github.com/microsoft/rushstack/issues/3021
require('@rushstack/heft-node-rig/profiles/default/includes/eslint/patch/custom-config-package-names');
module.exports = {
extends: [
'@rushstack/heft-node-rig/profiles/default/includes/eslint/profile/node',
'@rushstack/heft-node-rig/profiles/default/includes/eslint/mixins/friendly-locals',
'@rushstack/heft-node-rig/profiles/default/includes/eslint/mixins/tsdoc'
],
parserOptions: { tsconfigRootDir: __dirname },
plugins: ['eslint-plugin-header'],
overrides: [
{
files: ['*.ts', '*.tsx'],
rules: {
'header/header': [
'warn',
'line',
[
' Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.',
' See LICENSE in the project root for license information.'
]
]
}
}
]
};
|