Skip to content

Commit

Permalink
Basic skeleton setup for SDC23
Browse files Browse the repository at this point in the history
  • Loading branch information
schu96 committed Feb 14, 2023
0 parents commit 0e74225
Show file tree
Hide file tree
Showing 7 changed files with 13,554 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"presets": [
"@babel/preset-env",
[
"@babel/preset-react",
{
"runtime": "automatic"
}
]
]
}
22 changes: 22 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": [
"plugin:react/recommended",
"airbnb"
],
"overrides": [
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
}
}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.env
node_modules
config.js
3 changes: 3 additions & 0 deletions copyconfig.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
TOKEN: 'Your Token Here',
};
Loading

0 comments on commit 0e74225

Please sign in to comment.