# no-empty-module

Disallow empty undecorated module declarations

An undecorated module with no declarations or statements has no effect.
Instead, you SHOULD remove the empty module or add its intended contents.

- Category: suspicious
- Level: warning
- Fix: none
- Scope: module

## Reported

```ds title="main.ds"
module {}
```

## Accepted

```ds title="main.ds"
module {
    export const version = 1;
}
```

[language/linter/src/rules/suspicious/no_empty_module.rs:6](https://github.com/destack-sh/destack/blob/main/language/linter/src/rules/suspicious/no_empty_module.rs#L6)
