
org.eolang.motives.aliases.unused-alias.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
# Unused Alias
All defined object's aliases must be in use.
Incorrect:
```eo
+alias err org.eolang.io.stderr
+alias in org.eolang.io.stdin
+alias org.eolang.io.stdout
# Foo.
[x] > foo
x.div in.nextInt > @
```
Correct:
```eo
+alias in org.eolang.io.stdin
# Foo.
[x] > foo
x.div in.nextInt > @
```
© 2015 - 2025 Weber Informatics LLC | Privacy Policy