-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Open
Labels
Area: Build SystemArea: LintingPackage: eslint-pluginResolution: Soft CloseSoft closing inactive issues over a certain periodSoft closing inactive issues over a certain period
Description
Describe the issue:
Actual behavior:
Following code wont' be autofix nor triggers lint warnings:
import {Foo} from '@fluentui/hello'
import {Yolo} from '../life'
import {Bar} from '@fluentui/hello'
import {Long} from '../life'Expected behavior:
module path duplicates should trigger lint warnings, ideally should be autofixed on save/pre-commit
import {Foo} from '@fluentui/hello'
import {Yolo} from '../life'
import {Bar} from '@fluentui/hello'
import {Long} from '../life'↓↓↓
import {Foo, Bar} from '@fluentui/hello'
import {Yolo, Long} from '../life'Related
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
Area: Build SystemArea: LintingPackage: eslint-pluginResolution: Soft CloseSoft closing inactive issues over a certain periodSoft closing inactive issues over a certain period