aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-08-05 14:58:14 -0700
committerFuwn <[email protected]>2021-08-05 14:58:14 -0700
commitdd23053911d411377c09b8e1e77815428f2953ae (patch)
treecbbd14a43814f8cdb1804bd7e0250ed8e34e3239
parentfix(resume): grammar errors (diff)
downloadresume-md-dd23053911d411377c09b8e1e77815428f2953ae.tar.xz
resume-md-dd23053911d411377c09b8e1e77815428f2953ae.zip
fix(global): remove fluff
-rw-r--r--.czrc4
-rw-r--r--.editorconfig9
-rw-r--r--.husky/.gitignore1
-rw-r--r--.husky/commit-msg4
-rw-r--r--.husky/prepare-commit-msg4
-rw-r--r--commitlint.config.js12
-rw-r--r--package.json16
7 files changed, 0 insertions, 50 deletions
diff --git a/.czrc b/.czrc
deleted file mode 100644
index 47e02d2..0000000
--- a/.czrc
+++ /dev/null
@@ -1,4 +0,0 @@
-{
- "path": "./node_modules/cz-conventional-changelog",
- "defaultScope": "global"
-}
diff --git a/.editorconfig b/.editorconfig
deleted file mode 100644
index 9d08a1a..0000000
--- a/.editorconfig
+++ /dev/null
@@ -1,9 +0,0 @@
-root = true
-
-[*]
-charset = utf-8
-indent_style = space
-indent_size = 2
-end_of_line = lf
-insert_final_newline = true
-trim_trailing_whitespace = true
diff --git a/.husky/.gitignore b/.husky/.gitignore
deleted file mode 100644
index 31354ec..0000000
--- a/.husky/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-_
diff --git a/.husky/commit-msg b/.husky/commit-msg
deleted file mode 100644
index 0bd658f..0000000
--- a/.husky/commit-msg
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-. "$(dirname "$0")/_/husky.sh"
-
-npx --no-install commitlint --edit "$1"
diff --git a/.husky/prepare-commit-msg b/.husky/prepare-commit-msg
deleted file mode 100644
index e30b381..0000000
--- a/.husky/prepare-commit-msg
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/sh
-. "$(dirname "$0")/_/husky.sh"
-
-# exec < /dev/tty && node_modules/.bin/cz --hook || true
diff --git a/commitlint.config.js b/commitlint.config.js
deleted file mode 100644
index dccf9fa..0000000
--- a/commitlint.config.js
+++ /dev/null
@@ -1,12 +0,0 @@
-module.exports = {
- extends: ["@commitlint/config-conventional"],
- // rules: {
- // "scope-enum": [
- // 2,
- // "always",
- // [
- // "global",
- // ],
- // ],
- // },
-};
diff --git a/package.json b/package.json
deleted file mode 100644
index 20b7669..0000000
--- a/package.json
+++ /dev/null
@@ -1,16 +0,0 @@
-{
- "name": "resume",
- "private": true,
- "scripts": {
- "prepare": "husky install",
- "commit": "cz",
- "commit:signed": "cz -S"
- },
- "devDependencies": {
- "@commitlint/cli": "12.1.1",
- "@commitlint/config-conventional": "12.1.1",
- "commitizen": "4.2.4",
- "cz-conventional-changelog": "3.3.0",
- "husky": "6.0.0"
- }
-}