Skip to content

Commit

Permalink
formatting hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyTennenbaum committed Aug 25, 2023
1 parent 1652943 commit 6aacbc3
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 16 deletions.
3 changes: 2 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,6 @@
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
"useTabs": false,
"endOfLine": "lf"
}
35 changes: 21 additions & 14 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing to the Ma'akaf Website

First off, thanks for taking the time to contribute! ❤️
First off, thanks for taking the time to contribute! ❤️

All types of contributions are encouraged and valued.

Expand All @@ -10,27 +10,33 @@ All types of contributions are encouraged and valued.
- [Reporting Bugs](#i-have-encountered-a-bug-)
- [Before Submitting PRs](#before-submitting-prs-)


## I Want To Contribute! ⭐
Please take a look at the [Issues](https://github.com/Maakaf/maakaf-website/issues) Page, and see how you can support our efforts!

We have various tasks, for all experience levels,
please be sure to communicate which task you want to undertake,
and ensure that on one is already working on that specific issue.
<br/>
Please take a look at the
[Issues](https://github.com/Maakaf/maakaf-website/issues) Page, and see how you
can support our efforts!

We have various tasks, for all experience levels, please be sure to communicate
which task you want to undertake, and ensure that on one is already working on
that specific issue. <br/>

## I Have Encountered a Bug! 🐛
If you have encountered a bug, please submit a new [Bug Issue](https://github.com/Maakaf/maakaf-website/issues/new?assignees=&labels=bug%2Ctriage&projects=&template=bug.yml).

When describing the bug, please be as concise as possible, try your best to describe
If you have encountered a bug, please submit a new
[Bug Issue](https://github.com/Maakaf/maakaf-website/issues/new?assignees=&labels=bug%2Ctriage&projects=&template=bug.yml).

exactly what you were doing when you encountered the bug, reproducing a bug is half the solution!
<br/>
When describing the bug, please be as concise as possible, try your best to
describe

exactly what you were doing when you encountered the bug, reproducing a bug is
half the solution! <br/>

## Before Submitting PRs 🚨

All PR's need to pass our Checks in order to be considered.

These include our linting process, our code formatting, and ensuring a successful build.
These include our linting process, our code formatting, and ensuring a
successful build.

In order to run a lint locally:

Expand All @@ -44,6 +50,7 @@ In order to build your branch:

`npm run build`

Please be sure to run these steps __before__ opening your PR,
Please be sure to run these steps **before** opening your PR,

to avoid unnecessary spams in our checks page, and unneeded work for the Github Runners 🏃
to avoid unnecessary spams in our checks page, and unneeded work for the Github
Runners 🏃
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "npx prettier --write ."
"format": "npx prettier --write .",
"prepare": "husky install"
},
"husky": {
"hooks": {
Expand Down

0 comments on commit 6aacbc3

Please sign in to comment.