Skip to content

Commit

Permalink
first
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleygyngell committed Sep 15, 2022
0 parents commit 01cac2e
Show file tree
Hide file tree
Showing 20 changed files with 25,258 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
ESLINT_NO_DEV_ERRORS=true
FAST_REFRESH=false
76 changes: 76 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
{
"root": true,
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
},
"plugins": ["react", "jsx-a11y"],
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended"
],
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2018,
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"no-unused-vars": "warn",
"brace-style": "error",
"camelcase": [
"error",
{
"properties": "never"
}
],
"func-call-spacing": ["error", "never"],
"keyword-spacing": [
"error",
{
"before": true
}
],
"space-infix-ops": [
"error",
{
"int32Hint": false
}
],
"object-curly-spacing": ["error", "always"],
"eqeqeq": "warn",
"indent": [
"warn",
2,
{
"SwitchCase": 1
}
],
"key-spacing": [
"error",
{
"beforeColon": false
}
],
"no-console": "off",
"no-fallthrough": "warn",
"prefer-const": "error",
"quotes": ["error", "single"],
"comma-dangle": [
"error",
{
"arrays": "never",
"objects": "never",
"imports": "never",
"exports": "never",
"functions": "never"
}
],
"react/prop-types": [0],
"react/react-in-jsx-scope": "off"
}
}
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.DS_store
node_modules
*.txt
.env
.sass-cache

# Local Netlify folder
.netlify
11 changes: 11 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]

[dev-packages]

[requires]
python_version = "3.10"
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## Using NPM

`npm run start` or `npm run dev` to run the development server

`npm run build` to create a build directory

## Using Yarn

`yarn start` or `yarn dev` to run the development server

`yarn build` to create a build directory

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
Loading

0 comments on commit 01cac2e

Please sign in to comment.