Skip to content

Commit 68be1d3

Browse files
Upgrade(npm): Update release config
1 parent 8244013 commit 68be1d3

File tree

8 files changed

+148
-9
lines changed

8 files changed

+148
-9
lines changed

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
commit-message:
8+
prefix: "Upgrade(npm):"
9+
reviewers:
10+
- "evelynhathaway"
11+
assignees:
12+
- "evelynhathaway"

.gitignore

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
# Node
2-
node_modules
2+
node_modules/
33

44
# IDE
5-
\.idea/
6-
\.vscode/
5+
.idea/
6+
.vscode/*
7+
!.vscode/settings.json
8+
!.vscode/tasks.json
9+
!.vscode/launch.json
10+
!.vscode/extensions.json
711

8-
# Built files
12+
# Built
13+
/dist
914
/lib
1015

1116
# Testing

.husky/commit-msg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
. "$(dirname "$0")/_/husky.sh"
33

4-
npx --no-install commitlint -- -E HUSKY_GIT_PARAMS
4+
npx --no-install commitlint --edit "$1"

.markdownlint.jsonc

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{
2+
"heading-increment": true,
3+
"no-hard-tabs": false,
4+
"first-line-heading": false,
5+
"heading-style": {
6+
"style": "atx"
7+
},
8+
"ul-style": {
9+
"style": "dash"
10+
},
11+
"list-indent": true,
12+
"ul-indent": {
13+
"indent": 4,
14+
"start_indented": false
15+
},
16+
"no-trailing-spaces": {
17+
"strict": true,
18+
"br_spaces": 2
19+
},
20+
"no-reversed-links": true,
21+
"no-inline-html": false,
22+
"no-emphasis-as-heading": false,
23+
"no-multiple-blanks": {
24+
"maximum": 2
25+
},
26+
"line-length": false,
27+
"commands-show-output": true,
28+
"no-missing-space-atx": true,
29+
"no-multiple-space-atx": true,
30+
"blanks-around-headings": true,
31+
"heading-start-left": true,
32+
"no-duplicate-heading": {
33+
"siblings_only": true
34+
},
35+
"single-title": true,
36+
"no-trailing-punctuation": true,
37+
"no-multiple-space-blockquote": true,
38+
"no-blanks-blockquote": true,
39+
"ol-prefix": {
40+
"style": "one_or_ordered"
41+
},
42+
"list-marker-space": true,
43+
"blanks-around-fences": {
44+
"list_items": false
45+
},
46+
"blanks-around-lists": true,
47+
"no-bare-urls": true,
48+
"hr-style": {
49+
"style": "---"
50+
},
51+
"no-space-in-emphasis": true,
52+
"no-space-in-code": true,
53+
"no-space-in-links": true,
54+
"fenced-code-language": true,
55+
"no-empty-links": true,
56+
"proper-names": {
57+
"names": [
58+
"JavaScript",
59+
"TypeScript",
60+
"npm",
61+
"Node.js",
62+
"GitHub"
63+
]
64+
},
65+
"no-alt-text": true,
66+
"code-block-style": {
67+
"style": "fenced"
68+
},
69+
"single-trailing-newline": true,
70+
"code-fence-style": {
71+
"style": "backtick"
72+
}
73+
}

.vscode/extensions.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"recommendations": [
3+
"streetsidesoftware.code-spell-checker",
4+
"dbaeumer.vscode-eslint",
5+
"davidanson.vscode-markdownlint",
6+
"pflannery.vscode-versionlens",
7+
"wallabyjs.wallaby-vscode",
8+
"redhat.vscode-yaml",
9+
],
10+
}

.vscode/settings.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"editor.formatOnSave": true,
3+
"eslint.format.enable": true,
4+
"eslint.lintTask.enable": true,
5+
"files.associations": {
6+
".env": "shellscript",
7+
".env.*": "shellscript",
8+
},
9+
"files.eol": "\n",
10+
"files.insertFinalNewline": true,
11+
"files.trimFinalNewlines": true,
12+
"files.trimTrailingWhitespace": true,
13+
"html.format.wrapAttributes": "force-expand-multiline",
14+
"javascript.format.insertSpaceAfterConstructor": true,
15+
"javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
16+
"javascript.format.insertSpaceBeforeFunctionParenthesis": true,
17+
"javascript.format.semicolons": "insert",
18+
"javascript.preferences.importModuleSpecifierEnding": "minimal",
19+
"javascript.preferences.quoteStyle": "double",
20+
"typescript.format.insertSpaceAfterConstructor": true,
21+
"typescript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false,
22+
"typescript.format.insertSpaceAfterTypeAssertion": true,
23+
"typescript.format.insertSpaceBeforeFunctionParenthesis": true,
24+
"typescript.format.semicolons": "insert",
25+
"typescript.tsdk": "node_modules\\typescript\\lib",
26+
"versionlens.suggestions.showOnStartup": true,
27+
"[javascript]": {
28+
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
29+
},
30+
"[javascriptreact]": {
31+
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
32+
},
33+
"[typescript]": {
34+
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
35+
},
36+
"[typescriptreact]": {
37+
"editor.defaultFormatter": "dbaeumer.vscode-eslint"
38+
},
39+
}

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"@typescript-eslint/eslint-plugin": "^4.23.0",
5959
"@typescript-eslint/parser": "^4.23.0",
6060
"commitlint": "^12.1.4",
61-
"conventional-changelog-evelyn": "^1.2.1",
61+
"conventional-changelog-evelyn": "^1.2.2",
6262
"eslint": "^7.26.0",
6363
"eslint-plugin-evelyn": "^4.0.0",
6464
"eslint-plugin-import": "^2.23.2",

0 commit comments

Comments
 (0)