diff options
| author | Fuwn <[email protected]> | 2021-08-05 14:58:14 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-08-05 14:58:14 -0700 |
| commit | dd23053911d411377c09b8e1e77815428f2953ae (patch) | |
| tree | cbbd14a43814f8cdb1804bd7e0250ed8e34e3239 | |
| parent | fix(resume): grammar errors (diff) | |
| download | resume-md-dd23053911d411377c09b8e1e77815428f2953ae.tar.xz resume-md-dd23053911d411377c09b8e1e77815428f2953ae.zip | |
fix(global): remove fluff
| -rw-r--r-- | .czrc | 4 | ||||
| -rw-r--r-- | .editorconfig | 9 | ||||
| -rw-r--r-- | .husky/.gitignore | 1 | ||||
| -rw-r--r-- | .husky/commit-msg | 4 | ||||
| -rw-r--r-- | .husky/prepare-commit-msg | 4 | ||||
| -rw-r--r-- | commitlint.config.js | 12 | ||||
| -rw-r--r-- | package.json | 16 |
7 files changed, 0 insertions, 50 deletions
@@ -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" - } -} |