eslint-plugin-export-scope
eslint-plugin-export-scope copied to clipboard
Disallows importing scoped exports outside their scope
Thanks a lot for the incredible plugin. I have a minor issue that doesn't seem to work as expected when grouping exports ```ts /** @scope * */ const a =...
I have an NPM workspace with multiple packages, say `@sergei-dyshel/typescript` and `@sergei-dyshel/node`. I see that ESlint plugin triggers warning: ``` .../packages/qcfg-js-node/src/lib/cache.ts 1:10 warning Cannot import 'jsonStableStringify' outside its export scope...
Given this code: /** @scope . */ export abstract class RottenApple { public abstract foobar: string; } /** @scope . */ export class SadBanana { public foobar = "foobar"; }...