org.eolang.motives.metas.prohibited-package.md Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lints Show documentation
Show all versions of lints Show documentation
Style checkers (linters) for EO language
The newest version!
# Prohibited `+package`
Special package `org.eolang` is reserved for internal object only, and can not
be used outside.
Incorrect:
```eo
+package org.eolang
[] > foo
```
Correct:
```eo
+package my.awesome.package
[] > foo
```