Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sun33t/0002-linting-formatting-setup-deno
This repo demonstrates a toolchain for using git hooks to automate the linting and formatting of files and for the standardization of commit messages in deno projects.
https://github.com/sun33t/0002-linting-formatting-setup-deno
code-quality deno git-hooks lint-staged typescript
Last synced: about 2 hours ago
JSON representation
This repo demonstrates a toolchain for using git hooks to automate the linting and formatting of files and for the standardization of commit messages in deno projects.
- Host: GitHub
- URL: https://github.com/sun33t/0002-linting-formatting-setup-deno
- Owner: sun33t
- Created: 2025-01-30T17:32:53.000Z (3 days ago)
- Default Branch: main
- Last Pushed: 2025-01-31T09:17:45.000Z (2 days ago)
- Last Synced: 2025-01-31T10:24:05.688Z (2 days ago)
- Topics: code-quality, deno, git-hooks, lint-staged, typescript
- Language: TypeScript
- Homepage: https://suneet.codes/articles/linting-formatting-setup-deno
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This repo demonstrates a workflow for using git hooks to automate the linting
and formatting of files and for the standardization of commit messages within a
deno project.# Documentation
The workflow is documented in
[this article](https://suneet.codes/articles/linting-formatting-setup-deno).## Usage
To experience the automation, clone the project
```bash
git clone https://github.com/sun33t/0002-linting-formatting-setup-deno
```Go to the project directory
```bash
cd linting-formatting-setup-deno
```Install dependencies
```bash
deno install && deno task prepare
```Make a change in any file and commit the change. The toolchain will
automatically execute and you can see its output in the terminal.## Authors
- [@sun33t](https://github.com/sun33t)