Skip to content

Files

Latest commit

 

History

History
13 lines (7 loc) · 321 Bytes

no-import-side-effect.md

File metadata and controls

13 lines (7 loc) · 321 Bytes

Pattern: import with side-effect

Issue: -

Description

Avoid import statements with side-effect.

Rationale: Imports with side effects may have behavior which is hard for static verification.

Further Reading