dev
List of commits:
Subject Hash Author Date (UTC)
fix 95efd43ca494e81d3f61c0e17d05935f9a89e85a mucbuc 2020-07-04 16:19:20
fix b7e34312fd89e80bfcabd677fac6a84b03b9db11 mucbuc 2020-07-04 16:18:37
trim fe82d46c140168484164e7e0ca8bbde2679af57e mucbuc 2020-07-04 16:17:41
lint ac97ec59ea764b0f61064b368bcfa4bec570f2af mucbuc 2020-07-04 16:16:09
add edge case 5c6d8754ac762d6006ad0adcd95116d0aac25c92 mucbuc 2020-07-04 16:15:37
format ing 402d250add0d4af976751873d41f97c9212d55b7 mucbuc 2020-07-04 16:14:29
format b4b1830c9bda86af70a7094098377073a571e16c mucbuc 2020-07-04 15:50:55
cleanup dcdbf46efc941947f524debeddc000a9659e483c mucbuc 2020-07-04 15:41:28
good stuff 279e81e8f9a627a1331f4933aff3a2bf353eaf87 mucbuc 2020-07-04 05:35:37
better 708ed582f047c343c1cc8b6bec5214d597f3b4ef mucbuc 2020-07-04 05:12:43
try this ac05fe4edecf9349898e2bb940d3be876a25ebe4 mucbuc 2020-07-04 05:09:58
add separate step for linting 87ee1ef308138c72c72ce1b86a1b5cfe7648c22c mucbuc 2020-07-04 04:56:35
test bf37d2ede1d14e091993e6bdf075d8da0e12918c mucbuc 2020-07-04 04:50:29
test c5866575ec718fdbfb5b1240c6c4161e8c5089a3 mucbuc 2020-07-04 04:48:42
test 991c957339e60a7574da158e56bac545e89bbf2d mucbuc 2020-07-04 04:47:52
fix ed script 4710366e843510b16e6b3c3bc9c9c60be12fbeb8 mucbuc 2020-07-04 04:39:59
lint script 2dbb52ebe6853b3e79c49ceab9e9201776910c30 mucbuc 2020-07-04 04:38:28
wtf 90500373a23c05b472a816733904b900e0e20e79 mucbuc 2020-07-04 04:36:07
working on pre-commit afd729a52c43696c5fdd70c447284e0725f2b6f4 mucbuc 2020-07-04 02:07:03
--keep-index a28f4552baea3b98bd383f02c992746d2977084e mucbuc 2020-07-04 01:58:26
Commit 95efd43ca494e81d3f61c0e17d05935f9a89e85a - fix
Author: mucbuc
Author date (UTC): 2020-07-04 16:19
Committer name: mucbuc
Committer date (UTC): 2020-07-04 16:19
Parent(s): b7e34312fd89e80bfcabd677fac6a84b03b9db11
Signer:
Signing key:
Signing status: N
Tree: f3910cd5f927308f680da208e8cbe0cd41a0a05c
File Lines added Lines deleted
lint.js 1 1
File lint.js changed (mode: 100755) (index b894b69..a2070ff)
1 1 #!/usr/bin/env node #!/usr/bin/env node
2 2 const { exec } = require("shelljs"), const { exec } = require("shelljs"),
3 3 files = exec(`git diff --staged --name-only | grep \.js$`).stdout.split("\n"); files = exec(`git diff --staged --name-only | grep \.js$`).stdout.split("\n");
4 if (files.lengthi > 1) {
4 if (files.length > 1) {
5 5 exec(`npx prettier --write ${files.join(" ")}`); exec(`npx prettier --write ${files.join(" ")}`);
6 6 } }
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/mucbuc/configs

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/mucbuc/configs

Clone this repository using git:
git clone git://git.rocketgit.com/user/mucbuc/configs

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main