2019-10-21 07:52:52 +03:00
|
|
|
// This is a workaround for https://github.com/eslint/eslint/issues/3458
|
2023-09-26 11:09:54 +03:00
|
|
|
require('local-node-rig/profiles/default/includes/eslint/patch/modern-module-resolution');
|
|
|
|
// This is a workaround for https://github.com/microsoft/rushstack/issues/3021
|
|
|
|
require('local-node-rig/profiles/default/includes/eslint/patch/custom-config-package-names');
|
2019-10-21 07:52:52 +03:00
|
|
|
|
|
|
|
module.exports = {
|
2023-09-26 11:09:54 +03:00
|
|
|
extends: [
|
|
|
|
'local-node-rig/profiles/default/includes/eslint/profile/node-trusted-tool',
|
|
|
|
'local-node-rig/profiles/default/includes/eslint/mixins/friendly-locals'
|
|
|
|
],
|
2020-06-09 11:10:56 +03:00
|
|
|
parserOptions: { tsconfigRootDir: __dirname }
|
2019-10-21 07:52:52 +03:00
|
|
|
};
|