Skip to content

Commit 4b45630

Browse files
committed
cleanup the code
2 parents f670e12 + ea09337 commit 4b45630

65 files changed

Lines changed: 20332 additions & 24 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.babelrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"presets": [
3+
"@babel/preset-env",
4+
"@babel/preset-react"
5+
],
6+
"plugins": [
7+
"@babel/transform-runtime",
8+
"@babel/plugin-proposal-class-properties"
9+
]
10+
}

.circleci/config.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Circle CI 2.0 Config File
2+
# This config file will prevent tests from being run on the gh-pages branch.
3+
version: 2
4+
jobs:
5+
build:
6+
machine: true
7+
branches:
8+
ignore: gh-pages
9+
steps:
10+
- run: echo "Skipping tests on gh-pages branch"

.dockerignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*/node_modules
2+
*.log

.eslintrc.js

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,11 @@
11
module.exports = {
2-
"env": {
3-
"browser": true,
4-
"es6": true,
2+
extends: "airbnb",
3+
env: {
4+
browser: true
55
},
6-
"plugins": [
7-
"react",
8-
],
9-
"globals": {
10-
"graphql": false,
6+
rules: {
7+
'react/jsx-filename-extension': 'off',
8+
'jsx-a11y/anchor-is-valid': 'off' // temporary solution (while we don't have a router)
119
},
12-
"parserOptions": {
13-
"sourceType": "module",
14-
"ecmaFeatures": {
15-
"experimentalObjectRestSpread": true,
16-
"jsx": true,
17-
},
18-
}
10+
"parser": "babel-eslint"
1911
}

.github/FUNDING.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# These are supported funding model platforms
2+
3+
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
4+
patreon: # Replace with a single Patreon username
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
custom: # Replace with a single custom sponsorship URL
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---------------
2+
bug :
3+
---------------
4+
5+
**Describe the bug**
6+
A clear and concise description of what the bug is.
7+
8+
**To Reproduce**
9+
Steps to reproduce the behavior:
10+
11+
**Expected behavior**
12+
A clear and concise description of what you expected to happen.
13+
14+
**Screenshots**
15+
If applicable, add screenshots to help explain your problem.
16+
17+
**Reference**
18+
Share the refernce url

.github/ISSUE_TEMPLATE/custom.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: Custom issue template
3+
about: Describe this issue template's purpose here.
4+
5+
---
6+
7+

.idea/.gitignore

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

.idea/10secondsofcode.iml

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

.idea/inspectionProfiles/Project_Default.xml

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

0 commit comments

Comments
 (0)