Skip to content

Commit 8c1a04f

Browse files
committed
feat: Update and move pages
1 parent 61398eb commit 8c1a04f

File tree

11 files changed

+11
-9
lines changed

11 files changed

+11
-9
lines changed

β€Žrecipes/javascript/deno/index.mdβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ layout: listing
33
logo: deno
44
---
55
# Deno
6+
> A fast, secure runtime for JS with TS support, as a Node.js alternative

β€Žrecipes/javascript/format-and-lint/index.mdβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
layout: listing
33
---
44
# Format and Lint
5+
> Configure your JS project for formatting and linting
56
67
See also [Format and Lint](https://michaelcurrin.github.io/dev-cheatsheets/cheatsheets/javascript/format-and-lint/) on my Dev Cheatsheets site.

recipes/javascript/format-and-lint/checkout.md renamed to recipes/javascript/format-and-lint/mix.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
# Configs
1+
# Mix
22

33
Sample files for ESLint (linting), Prettier (formatting), Jest (tests) and TypeScript.
44

5-
6-
## The Checkout repo
7-
85
From [actions/checkout](https://github.com/actions/checkout) - a TypeScript project.
96

107
- `.eslintignore` and `.prettierignore` (same content in both)
@@ -29,9 +26,9 @@ From [actions/checkout](https://github.com/actions/checkout) - a TypeScript proj
2926
"import/no-namespace": "off",
3027
"no-unused-vars": "off",
3128
"@typescript-eslint/no-unused-vars": "error",
32-
29+
3330
// ...
34-
31+
3532
"@typescript-eslint/restrict-plus-operands": "error",
3633
"semi": "off",
3734
"@typescript-eslint/semi": ["error", "never"],
@@ -92,4 +89,3 @@ From [actions/checkout](https://github.com/actions/checkout) - a TypeScript proj
9289
"exclude": ["__test__", "lib", "node_modules"]
9390
}
9491
```
95-
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
---
2+
layout: listing
3+
---
4+
# Packages
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Testing
2+
> Use test frameworks in a JS project

0 commit comments

Comments
Β (0)