Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelMugaiga committed Jul 10, 2022
0 parents commit fc40c51
Show file tree
Hide file tree
Showing 16 changed files with 3,804 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"language": "en",
"words": ["HackYourFutureBelgium", "HackYourFuture"],
"ignorePaths": [
"node_modules/**",
"package.json",
"package-lock.json",
"**/*.mp4",
"**/*.svg"
]
}
67 changes: 67 additions & 0 deletions .github/ISSUE_TEMPLATE/help-wanted.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
---
name: help-wanted
about:
A template issue for when you're blocked on certain lines of code. This
template has a lot of sections to get you thinking about your question, you
don't need to fill in every one of them
title: "(describe what is blocking you)"
labels: help-wanted
---

<!--
Make your issue easy to find:
- milestone: the current module
- labels: anything that will make this easier to filter
- assign: anyone you would like help from
-->

## The Code

<!--
The code you have a question about (it doesn't need to be your code!). This can
be shared a few ways:
- a snippet in the MD of your issue or
- a
[permalink](https://help.github.com/en/github/managing-your-work-on-github/creating-a-permanent-link-to-a-code-snippet)
or
- a [gist](https://help.github.com/en/github/writing-on-github/creating-gists)
-->

## Best Understanding

<!--
Explain the situation:
- What _does_ the code do
- What do you _want_ it to do
- How do you think it works?
- What don't you understand about how it works?
-->

## Best Efforts

<!--
If this is your code and it has a bug, explain what you've tried so far:
- Include code
- Mention everything you tried, even if it seems silly to you
- What happened with each effort?
- What brought you closer?
- What brought you farther?
-->

## Helpful Links

<!--
Videos, articles, snippets, ... anything that helped you understand or make
progress on the problem.
-->

## Hopeful Links

<!--
Links that look like they should be helpful but you just can't put all the
pieces together.
-->
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: question
about:
A template issue for topics you'd like to discuss or learn more about.
specific topics, general knowledge, it does not even need to be about code.
There are no bad questions!
title: ""
labels: question
---

<!--
Make your issue easy to find:
- milestone: the current module
- labels: anything that will make this easier to filter
- assign: anyone you would like help from
-->
37 changes: 37 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!--
make this PR easy to find:
- assign and add reviewers
- add any helpful labels
- connect it to a milestone (if necessary)
- link it with an issue (if necessary)
-->

<!-- describe your PR -->

## Checklists

### General Checks

- [ ] the branch is up to date with `main`/`master`
- [ ] the code works when pulled and run locally
- [ ] All CI checks pass
- [ ] all conflicts are resolved (if any)
- [ ] PR has a descriptive title
- [ ] PR has appropriate labels and milestones for easy identification
- [ ] PR it is assigned to the owner
- [ ] reviewers are assigned
- [ ] the PR contributes only one focused change
- [ ] It is in the appropriate column in the project board (if necessary)
- [ ] has short and clear description
- [ ] is linked to an issue (if it is related)
- [ ] feedback is addressed (if any and if it is appropriate feedback.)

## Markdown

<!-- markdown-specific checks -->

- [ ] the markdown source is formatted
- [ ] spelling and grammar is correct in all text
- [ ] The markdown looks correct when you preview the file
- [ ] all links and images work
20 changes: 20 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: lint

on:
pull_request:
branches: [master, main]
push:
branches: [master, main]

jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- run: npm install

- run: npm run lint:ls
- run: npm run format:check
- run: npm run lint:md
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
.DS_Store
9 changes: 9 additions & 0 deletions .ls-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
ls:
.dir: kebab-case
.md: kebab-case | regex:[0-9A-Z\-]+

ignore:
- .git
- node_modules
- .github
- .vscode
Loading

0 comments on commit fc40c51

Please sign in to comment.