-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deploying to gh-pages from @ 6a661a4 🚀
- Loading branch information
Showing
60 changed files
with
185 additions
and
56 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Architect Duplicate | ||
|
||
Each `.eo` file must have only one architect. | ||
|
||
Incorrect: | ||
|
||
```eo | ||
+architect [email protected] | ||
+architect [email protected] | ||
# Foo. | ||
[] > foo | ||
``` | ||
|
||
Correct: | ||
|
||
```eo | ||
+architect [email protected] | ||
# Foo. | ||
[] > foo | ||
``` |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Atom With `@` | ||
|
||
Atoms must not have `@` attribute. | ||
|
||
Incorrect: | ||
|
||
```eo | ||
# Foo. | ||
[@] > foo /number | ||
``` | ||
|
||
Correct: | ||
|
||
```eo | ||
# Foo. | ||
[] > foo /number | ||
``` |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Incorrect Alias | ||
|
||
Special meta `+alias` must point to existing file in the dir, outlined by | ||
`+package` meta. | ||
|
||
Incorrect: | ||
|
||
```eo | ||
+alias foo | ||
+package ttt | ||
# Bar. | ||
[] > bar | ||
foo > @ | ||
``` | ||
|
||
Since `ttt/foo.xmir` file doesn't exist, `critical` defect will be issued. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Object Is Not Unique | ||
|
||
High-level object names must be unique across the package. | ||
|
||
Incorrect: | ||
|
||
`foo.eo`: | ||
|
||
```eo | ||
+package foo | ||
# Foo. | ||
[] > foo | ||
``` | ||
|
||
`bar.eo`: | ||
|
||
```eo | ||
+package foo | ||
# Bar. | ||
[] > foo | ||
``` | ||
|
||
Correct: | ||
|
||
`foo.eo`: | ||
|
||
```eo | ||
+package foo | ||
# Foo. | ||
[] > foo | ||
``` | ||
|
||
`bar.eo`: | ||
|
||
```eo | ||
+package foo | ||
# Bar. | ||
[] > bar | ||
``` |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Unit Test Without Live File | ||
|
||
Each test file must have the live file, with the same name. | ||
|
||
Incorrect: | ||
|
||
```text | ||
main/ | ||
-----bar.eo | ||
-----... | ||
tests/ | ||
-----foo-test.eo | ||
-----... | ||
``` | ||
|
||
Correct: | ||
|
||
```text | ||
main/ | ||
-----foo.eo | ||
-----... | ||
tests/ | ||
-----foo-test.eo | ||
-----... | ||
``` |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,60 +1,65 @@ | ||
<html><body style="font-family: monospace;"> | ||
<p>Latest version: 0.0.29</p> | ||
<p>Latest version: 0.0.30</p> | ||
<p>List of lints in this version<p><ul> | ||
<li><a href="/0.0.29/comment-is-too-wide.html">comment-is-too-wide</a></li> | ||
<li><a href="/0.0.29/incorrect-package.html">incorrect-package</a></li> | ||
<li><a href="/0.0.29/incorrect-node-rt-location.html">incorrect-node-rt-location</a></li> | ||
<li><a href="/0.0.29/object-does-not-match-filename.html">object-does-not-match-filename</a></li> | ||
<li><a href="/0.0.29/alias-too-long.html">alias-too-long</a></li> | ||
<li><a href="/0.0.29/incorrect-home.html">incorrect-home</a></li> | ||
<li><a href="/0.0.29/atom-with-data.html">atom-with-data</a></li> | ||
<li><a href="/0.0.29/incorrect-jvm-rt-location.html">incorrect-jvm-rt-location</a></li> | ||
<li><a href="/0.0.29/rt-without-atoms.html">rt-without-atoms</a></li> | ||
<li><a href="/0.0.29/broken-alias-first.html">broken-alias-first</a></li> | ||
<li><a href="/0.0.29/mandatory-package-meta.html">mandatory-package-meta</a></li> | ||
<li><a href="/0.0.29/broken-alias-second.html">broken-alias-second</a></li> | ||
<li><a href="/0.0.29/name-outside-of-abstract-object.html">name-outside-of-abstract-object</a></li> | ||
<li><a href="/0.0.29/comment-without-dot.html">comment-without-dot</a></li> | ||
<li><a href="/0.0.29/mandatory-home-meta.html">mandatory-home-meta</a></li> | ||
<li><a href="/0.0.29/incorrect-rt-parts.html">incorrect-rt-parts</a></li> | ||
<li><a href="/0.0.29/comment-not-capitalized.html">comment-not-capitalized</a></li> | ||
<li><a href="/0.0.29/not-empty-atoms.html">not-empty-atoms</a></li> | ||
<li><a href="/0.0.29/package-contains-multiple-parts.html">package-contains-multiple-parts</a></li> | ||
<li><a href="/0.0.29/external-weak-typed-atoms.html">external-weak-typed-atoms</a></li> | ||
<li><a href="/0.0.29/incorrect-version.html">incorrect-version</a></li> | ||
<li><a href="/0.0.29/self-naming.html">self-naming</a></li> | ||
<li><a href="/0.0.29/incorrect-test-object-name.html">incorrect-test-object-name</a></li> | ||
<li><a href="/0.0.29/unit-test-without-phi.html">unit-test-without-phi</a></li> | ||
<li><a href="/0.0.29/unknown-names.html">unknown-names</a></li> | ||
<li><a href="/0.0.29/same-line-names.html">same-line-names</a></li> | ||
<li><a href="/0.0.29/noname-attributes.html">noname-attributes</a></li> | ||
<li><a href="/0.0.29/broken-refs.html">broken-refs</a></li> | ||
<li><a href="/0.0.29/ascii-only.html">ascii-only</a></li> | ||
<li><a href="/0.0.29/abstract-decoratee.html">abstract-decoratee</a></li> | ||
<li><a href="/0.0.29/incorrect-bytes-format.html">incorrect-bytes-format</a></li> | ||
<li><a href="/0.0.29/global-nonames.html">global-nonames</a></li> | ||
<li><a href="/0.0.29/atom-without-rt.html">atom-without-rt</a></li> | ||
<li><a href="/0.0.29/duplicate-aliases.html">duplicate-aliases</a></li> | ||
<li><a href="/0.0.29/signed-binding-indexes.html">signed-binding-indexes</a></li> | ||
<li><a href="/0.0.29/correct-package-meta.html">correct-package-meta</a></li> | ||
<li><a href="/0.0.29/object-has-data.html">object-has-data</a></li> | ||
<li><a href="/0.0.29/comment-too-short.html">comment-too-short</a></li> | ||
<li><a href="/0.0.29/unknown-metas.html">unknown-metas</a></li> | ||
<li><a href="/0.0.29/package-without-tail.html">package-without-tail</a></li> | ||
<li><a href="/0.0.29/empty-object.html">empty-object</a></li> | ||
<li><a href="/0.0.29/test-object-is-not-verb-in-singular.html">test-object-is-not-verb-in-singular</a></li> | ||
<li><a href="/0.0.29/duplicate-metas.html">duplicate-metas</a></li> | ||
<li><a href="/0.0.29/sparse-decoration.html">sparse-decoration</a></li> | ||
<li><a href="/0.0.29/zero-version.html">zero-version</a></li> | ||
<li><a href="/0.0.29/unsorted-metas.html">unsorted-metas</a></li> | ||
<li><a href="/0.0.29/incorrect-architect.html">incorrect-architect</a></li> | ||
<li><a href="/0.0.29/many-free-attributes.html">many-free-attributes</a></li> | ||
<li><a href="/0.0.29/unknown-rt.html">unknown-rt</a></li> | ||
<li><a href="/0.0.29/alias-without-tail.html">alias-without-tail</a></li> | ||
<li><a href="/0.0.29/duplicate-names.html">duplicate-names</a></li> | ||
<li><a href="/0.0.29/unused-alias.html">unused-alias</a></li> | ||
<li><a href="/0.0.29/mandatory-version-meta.html">mandatory-version-meta</a></li> | ||
<li><a href="/0.0.29/prohibited-package.html">prohibited-package</a></li> | ||
<li><a href="/0.0.30/atom-with-phi.html">atom-with-phi</a></li> | ||
<li><a href="/0.0.30/comment-is-too-wide.html">comment-is-too-wide</a></li> | ||
<li><a href="/0.0.30/incorrect-package.html">incorrect-package</a></li> | ||
<li><a href="/0.0.30/incorrect-node-rt-location.html">incorrect-node-rt-location</a></li> | ||
<li><a href="/0.0.30/incorrect-alias.html">incorrect-alias</a></li> | ||
<li><a href="/0.0.30/object-does-not-match-filename.html">object-does-not-match-filename</a></li> | ||
<li><a href="/0.0.30/alias-too-long.html">alias-too-long</a></li> | ||
<li><a href="/0.0.30/incorrect-home.html">incorrect-home</a></li> | ||
<li><a href="/0.0.30/atom-with-data.html">atom-with-data</a></li> | ||
<li><a href="/0.0.30/incorrect-jvm-rt-location.html">incorrect-jvm-rt-location</a></li> | ||
<li><a href="/0.0.30/rt-without-atoms.html">rt-without-atoms</a></li> | ||
<li><a href="/0.0.30/broken-alias-first.html">broken-alias-first</a></li> | ||
<li><a href="/0.0.30/mandatory-package-meta.html">mandatory-package-meta</a></li> | ||
<li><a href="/0.0.30/broken-alias-second.html">broken-alias-second</a></li> | ||
<li><a href="/0.0.30/name-outside-of-abstract-object.html">name-outside-of-abstract-object</a></li> | ||
<li><a href="/0.0.30/comment-without-dot.html">comment-without-dot</a></li> | ||
<li><a href="/0.0.30/mandatory-home-meta.html">mandatory-home-meta</a></li> | ||
<li><a href="/0.0.30/incorrect-rt-parts.html">incorrect-rt-parts</a></li> | ||
<li><a href="/0.0.30/comment-not-capitalized.html">comment-not-capitalized</a></li> | ||
<li><a href="/0.0.30/not-empty-atoms.html">not-empty-atoms</a></li> | ||
<li><a href="/0.0.30/package-contains-multiple-parts.html">package-contains-multiple-parts</a></li> | ||
<li><a href="/0.0.30/external-weak-typed-atoms.html">external-weak-typed-atoms</a></li> | ||
<li><a href="/0.0.30/incorrect-version.html">incorrect-version</a></li> | ||
<li><a href="/0.0.30/self-naming.html">self-naming</a></li> | ||
<li><a href="/0.0.30/incorrect-test-object-name.html">incorrect-test-object-name</a></li> | ||
<li><a href="/0.0.30/unit-test-without-phi.html">unit-test-without-phi</a></li> | ||
<li><a href="/0.0.30/unknown-names.html">unknown-names</a></li> | ||
<li><a href="/0.0.30/same-line-names.html">same-line-names</a></li> | ||
<li><a href="/0.0.30/noname-attributes.html">noname-attributes</a></li> | ||
<li><a href="/0.0.30/broken-refs.html">broken-refs</a></li> | ||
<li><a href="/0.0.30/architect-duplicate.html">architect-duplicate</a></li> | ||
<li><a href="/0.0.30/ascii-only.html">ascii-only</a></li> | ||
<li><a href="/0.0.30/abstract-decoratee.html">abstract-decoratee</a></li> | ||
<li><a href="/0.0.30/incorrect-bytes-format.html">incorrect-bytes-format</a></li> | ||
<li><a href="/0.0.30/global-nonames.html">global-nonames</a></li> | ||
<li><a href="/0.0.30/atom-without-rt.html">atom-without-rt</a></li> | ||
<li><a href="/0.0.30/duplicate-aliases.html">duplicate-aliases</a></li> | ||
<li><a href="/0.0.30/signed-binding-indexes.html">signed-binding-indexes</a></li> | ||
<li><a href="/0.0.30/correct-package-meta.html">correct-package-meta</a></li> | ||
<li><a href="/0.0.30/object-has-data.html">object-has-data</a></li> | ||
<li><a href="/0.0.30/comment-too-short.html">comment-too-short</a></li> | ||
<li><a href="/0.0.30/unknown-metas.html">unknown-metas</a></li> | ||
<li><a href="/0.0.30/package-without-tail.html">package-without-tail</a></li> | ||
<li><a href="/0.0.30/empty-object.html">empty-object</a></li> | ||
<li><a href="/0.0.30/test-object-is-not-verb-in-singular.html">test-object-is-not-verb-in-singular</a></li> | ||
<li><a href="/0.0.30/duplicate-metas.html">duplicate-metas</a></li> | ||
<li><a href="/0.0.30/sparse-decoration.html">sparse-decoration</a></li> | ||
<li><a href="/0.0.30/zero-version.html">zero-version</a></li> | ||
<li><a href="/0.0.30/unsorted-metas.html">unsorted-metas</a></li> | ||
<li><a href="/0.0.30/object-is-not-unique.html">object-is-not-unique</a></li> | ||
<li><a href="/0.0.30/incorrect-architect.html">incorrect-architect</a></li> | ||
<li><a href="/0.0.30/unit-test-without-live-file.html">unit-test-without-live-file</a></li> | ||
<li><a href="/0.0.30/many-free-attributes.html">many-free-attributes</a></li> | ||
<li><a href="/0.0.30/unknown-rt.html">unknown-rt</a></li> | ||
<li><a href="/0.0.30/alias-without-tail.html">alias-without-tail</a></li> | ||
<li><a href="/0.0.30/duplicate-names.html">duplicate-names</a></li> | ||
<li><a href="/0.0.30/unused-alias.html">unused-alias</a></li> | ||
<li><a href="/0.0.30/mandatory-version-meta.html">mandatory-version-meta</a></li> | ||
<li><a href="/0.0.30/prohibited-package.html">prohibited-package</a></li> | ||
</ul> | ||
<p>Published on Mon Dec 30 05:33:21 UTC 2024.</p> | ||
<p>Published on Fri Jan 3 11:05:37 UTC 2025.</p> | ||
</body></html> |