-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Markdown Lint and
README.md
formatting (#187)
This commit includes adding `Markdown Lint` to the GitHub workflow. This will help in maintaining consistent formatting and code quality in markdown files. Updates were also made to enhance code readability by improving the structure and formatting in the YAML scripts, PHP test files, and the markdown readme file. Moreover, a new `.editorconfig` file was added to manage markdown files and `.markdownlint.yml` file was added to configure the linter. Lastly, `Makefile` was updated to include commands for running markdown tests.
- Loading branch information
Showing
6 changed files
with
196 additions
and
119 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
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,37 @@ | ||
# | ||
# JBZoo Toolbox - Csv-Blueprint. | ||
# | ||
# This file is part of the JBZoo Toolbox project. | ||
# For the full copyright and license information, please view the LICENSE | ||
# file that was distributed with this source code. | ||
# | ||
# @license MIT | ||
# @copyright Copyright (C) JBZoo.com, All rights reserved. | ||
# @see https://github.com/JBZoo/Csv-Blueprint | ||
# | ||
|
||
# See https://github.com/DavidAnson/markdownlint/tree/main/doc | ||
|
||
MD043: false | ||
|
||
MD033: | ||
allowed_elements: | ||
- summary | ||
- details | ||
- table | ||
- tr | ||
- td | ||
- b | ||
- br | ||
|
||
MD012: | ||
maximum: 2 | ||
|
||
MD013: | ||
line_length: 150 | ||
heading_line_length: 120 | ||
code_blocks: false | ||
tables: false | ||
headings: true | ||
strict: false | ||
stern: 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
Oops, something went wrong.