acekyd / made-in-nigeria

Here is a curation of awesome tools built by Nigerians that can be used by anybody and from anywhere in the world.
https://madeinnigeria.dev
1.02k stars 403 forks source link

Rearrange the README B section alphabetically and format it using Prettier. #288

Closed ibrahimshittu closed 9 months ago

ibrahimshittu commented 9 months ago

Title:

Rearrange the README B section alphabetically and format it using Prettier.

Purpose

This PR aims to rearrange the B section alphabetically and format it using Prettier for easy readability.

Changes Made

Checklist

codesandbox[bot] commented 9 months ago

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders
Open Preview

ibrahimshittu commented 9 months ago

This looks good.

But, to ensure the uniformity spans across various contributor's devices we could have an editorconfig file that handles this.

Another contributor with a different prettier setup or rule could change this. The editorconfig would ensure it's all in sync.

With your change, the indent_size should be around 2 or so. The editorconfig file should only check the markdown file now.

Something similar to this:

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

[*.md]
indent_style = tab
indent_size = 2

Yes, you are correct!

I have added the required .editorconfig file.

Thanks