Skip to content
This repository was archived by the owner on Jun 16, 2023. It is now read-only.

Commit a9f69cd

Browse files
bsrinivas8687ironman0x7b2siddhant2001
authored
Removed old source code and added GitHub action for lint (#4)
* Updated Turing 2 faucet URL * Remove old code and dependencies * Added CODE_OF_CONDUCT * Updated issue templates * Added GitHub action to check linting on PR * Fixed issue while running the ESLint * Added caching dependencies for lint workflow Co-authored-by: Tony Stark <[email protected]> Co-authored-by: Siddhant Jain <[email protected]>
1 parent b1bb0b7 commit a9f69cd

File tree

287 files changed

+2002
-17096
lines changed

Some content is hidden

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

287 files changed

+2002
-17096
lines changed

.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
SKIP_PREFLIGHT_CHECK=true

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. iOS]
28+
- Browser [e.g. chrome, safari]
29+
- Version [e.g. 22]
30+
31+
**Smartphone (please complete the following information):**
32+
- Device: [e.g. iPhone6]
33+
- OS: [e.g. iOS8.1]
34+
- Browser [e.g. stock browser, safari]
35+
- Version [e.g. 22]
36+
37+
**Additional context**
38+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/workflows/lint.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: CI
2+
on: push
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
9+
- name: Cache dependencies
10+
uses: actions/cache@v2
11+
with:
12+
path: '**/node_modules'
13+
key: ${{ runner.os }}-dependencies-${{ hashFiles('**/yarn.lock') }}
14+
15+
- name: Install dependencies
16+
run: yarn install
17+
18+
- name: Run ESLint
19+
run: ./node_modules/eslint/bin/eslint.js --ext .js,.jsx .

.gitignore

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,17 @@
1-
# dependencies
2-
/node_modules
3-
/.pnp
4-
.pnp.js
5-
6-
# testing
7-
/coverage
8-
9-
# production
1+
/bin
102
/build
3+
/coverage
114
/dist
12-
/bin
13-
14-
# misc
155
.DS_Store
16-
.env.local
176
.env.development.local
18-
.env.test.local
7+
.env.local
198
.env.production.local
20-
9+
.env.test.local
10+
.idea
11+
/node_modules
2112
npm-debug.log*
13+
/.pnp
14+
.pnp.js
15+
.vscode
2216
yarn-debug.log*
2317
yarn-error.log*

.idea/.gitignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

.idea/codeStyles/Project.xml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 0 additions & 5 deletions
This file was deleted.

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)