-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2895 from c71n93/2894-fix-md-linter-errors
Fix markdown linter errors
- Loading branch information
Showing
13 changed files
with
153 additions
and
80 deletions.
There are no files selected for viewing
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
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,16 @@ | ||
# Default state for all rules | ||
default: true | ||
|
||
# Line length : https://github.com/DavidAnson/markdownlint/blob/v0.33.0/doc/md013.md | ||
MD013: | ||
line_length: 100 | ||
|
||
# Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.33.0/doc/md033.md | ||
MD033: | ||
allowed_elements: [img] | ||
|
||
# Fenced code blocks should have a language specified : https://github.com/DavidAnson/markdownlint/blob/v0.33.0/doc/md040.md | ||
MD040: false | ||
|
||
# First line in a file should be a top-level heading : https://github.com/DavidAnson/markdownlint/blob/v0.33.0/doc/md041.md | ||
MD041: false |
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
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
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
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,6 +1,7 @@ | ||
<img src="https://www.yegor256.com/images/books/elegant-objects/cactus.svg" height="100px" /> | ||
<!-- markdownlint-disable-next-line line-length --> | ||
<img alt="logo" src="https://www.yegor256.com/images/books/elegant-objects/cactus.svg" height="100px" /> | ||
|
||
[![Maven Central](https://img.shields.io/maven-central/v/org.eolang/eo-maven-plugin.svg)](https://maven-badges.herokuapp.com/maven-central/org.eolang/eo-maven-plugin) | ||
|
||
This directory contains integration tests for eolang-maven-plugin, | ||
but you can use them as examples of EO-to-Java transformations. | ||
but you can use them as examples of EO-to-Java transformations. |
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 +1 @@ | ||
<img alt="logo" src="https://www.objectionary.com/cactus.svg" height="100px" /> | ||
<img alt="logo" src="https://www.objectionary.com/cactus.svg" height="100px" /> |
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,3 +1,3 @@ | ||
<img alt="logo" src="https://www.objectionary.com/cactus.svg" height="100px" /> | ||
|
||
This test checks if one more package layer is added successfully to all source files. | ||
This test checks if one more package layer is added successfully to all source files. |
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,4 +1,4 @@ | ||
<img alt="logo" src="https://www.objectionary.com/cactus.svg" height="100px" /> | ||
|
||
The main goal of the integration test is to check that `mvn test-compile` step does not rewrite | ||
files in `target/classes` which were generated from `src` folder. | ||
files in `target/classes` which were generated from `src` folder. |
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,4 +1,4 @@ | ||
This is the simplest possible example of a program written in EO. | ||
Don't make it more complex than it is right now. | ||
The purpose of this integration test is to keep it running no matter | ||
how much we change the eo-maven-plugin or the eo-runtime modules. | ||
how much we change the eo-maven-plugin or the eo-runtime modules. |
Oops, something went wrong.