Skip to content

Commit

Permalink
✨ add latest examples
Browse files Browse the repository at this point in the history
  • Loading branch information
w3cj committed Aug 16, 2022
1 parent f28aab9 commit d550e84
Show file tree
Hide file tree
Showing 66 changed files with 25,881 additions and 0 deletions.
37 changes: 37 additions & 0 deletions 2022-08-12/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
* [x] 0xGamer - How do we refresh a docker container when source code changes? (During development)
* How to cancel a request?
* https://javascript.info/fetch-abort
* https://axios-http.com/docs/cancellation
* Quách Trọng Nhân - Can you explain a little bit about setTimeout?
* Indratej Reddy - Please make a short and sweet and informative videos on git hub commands
* git config
* git init
* .gitignore
* git status
* gss
* git add .
* gaa
* git add -A
* git commit -m "new stuff"
* gcm
* git push <remote name> <branch name>
* git push origin main
* git push -f
* git branch branchName
* git merge branchName
* git fetch
* git remote -v
* git pull <remote name> <branch name>
* git pull origin main
* git checkout -b branchName
* git branch -D branchName
* git stash
* Things I lookup if I need them
* cherry-pick
* rebase
* squash
* rm
* reset
* david snyder - $2.00 from david snyder: "You should add #🔴live-chat messages to your app"
* Timon - Hey CJ. I saw some people using "!!myVariable". What the double negation does? and another request, can you explain a bit the recursion in JS, it's weired how a function with the same name is called.

25 changes: 25 additions & 0 deletions 2022-08-12/example-project/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
tsconfigRootDir : __dirname,
sourceType: 'module',
},
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
],
root: true,
env: {
node: true,
jest: true,
},
ignorePatterns: ['.eslintrc.js'],
rules: {
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 'off',
},
};
Loading

0 comments on commit d550e84

Please sign in to comment.