Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
xxxAlvaDevxxx committed Apr 29, 2024
2 parents c764e9b + 0b57ba2 commit 40bf746
Show file tree
Hide file tree
Showing 8 changed files with 112 additions and 7 deletions.
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"
41 changes: 41 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: "CodeQL"

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
schedule:
- cron: "39 10 * * 3"

jobs:
analyze:
name: Analyze
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
permissions:
security-events: write
actions: read
contents: read

strategy:
fail-fast: false
matrix:
language: ["javascript-typescript"]

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}

- name: Autobuild
uses: github/codeql-action/autobuild@v3

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -173,3 +173,6 @@ dist

# Finder (MacOS) folder config
.DS_Store

# Build assets
build
12 changes: 12 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.husky
.vscode
.eslintrc.cjs
.lintstagedrc
.gitignore
.prettierrc.yaml
.swcrc
commitlint.config.js
markdownlint.jsonc
tsconfig.json
bun.lockb
.github
4 changes: 4 additions & 0 deletions .swcrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
"target": "esnext",
"parser": {
"syntax": "typescript"
},
"baseUrl": "./",
"paths": {
"@/*": ["src/*"]
}
}
}
5 changes: 5 additions & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Authors

- [Raul Catalinas Esteban](https://github.com/RaulCatalinas) - Main developer of the project.

- [Thomas](https://github.com/xxxAlvaDevxxx) - Main developer of the project.
40 changes: 34 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,43 @@
# huskybc
# HuskyBC

To install dependencies:
HuskyBC is a command line for easy Husky configuration

## Run Locally

Clone the project

```bash
git clone https://github.com/RaulCatalinas/HuskyBC.git
#or
git clone [email protected]:RaulCatalinas/HuskyBC.git
#or
gh repo clone RaulCatalinas/HuskyBC
```

Go to the project directory

```bash
cd HuskyBC
```

Install dependencies

```bash
bun install
bun install
```

To run:
Running the CLI

```bash
bun run index.ts
bun src/index.ts
```

This project was created using `bun init` in bun v1.1.4. [Bun](https://bun.sh) is a fast all-in-one JavaScript runtime.
## Feedback

If you have any feedback, please reach out to us at <[email protected]>

## Project Overview

This project is developed by a team of passionate contributors.

To learn more about the people behind the project, please visit the [Contributors](AUTHORS.md) page.
8 changes: 7 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
"noPropertyAccessFromIndexSignature": false,

// Import alias
"baseUrl": "./",
"paths": {
"@/*": ["src/*"]
}
}
}

0 comments on commit 40bf746

Please sign in to comment.