Skip to content

Latest commit

 

History

History
76 lines (49 loc) · 1.27 KB

README.md

File metadata and controls

76 lines (49 loc) · 1.27 KB

DURCH - a little game about shooting through

dominik_hautau.mp4

This is my neuefische web-development-bootcamp capstone project.

It uses the following tools/libraries:

Getting started

Run the development server:

npm run dev

Atomic design

I use atomic design. You can read more about my decision in the documentation.

Commitlint

I use commitlint to ensure conventional commit messages. You can read more about my decision in the documentation.

Commands

Run the development server:

npm run dev

Build:

npm run build

Run stylelint

npm run stylelint

Run eslint

npm run eslint

Run all linters

npm run lint

Skipping linters

If you need to skip a linter you can add the --no-verify flag.

Warning! We strongly advise against skipping linters.

# Skipping commitlint
git commit README.md -m "this is a dirty commit" --no-verify
# Skipping linters
git push --no-verify