Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ariza front #1

Open
wants to merge 22 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
8b2f980
adding protocol swticher
howmarketing Nov 21, 2021
924785d
fixing how eslint must to watch the development rules
howmarketing Nov 21, 2021
852b7c1
Changing package descriptions, adding they homepage, including devede…
howmarketing Nov 21, 2021
5e39357
changing the typescript project behaivor about react programming with…
howmarketing Nov 21, 2021
cd2c260
Testing eslint behaivor when working with fast refresh
howmarketing Nov 21, 2021
4b2d2db
lock npm packeages files
howmarketing Nov 21, 2021
d7df398
just for consult originals packages names and versions when developping
howmarketing Nov 21, 2021
78d7061
Starting a new branch called ariza_front to work on front-end changings
howmarketing Nov 21, 2021
453313a
changing manifest infos and google track site verification to deploy
howmarketing Nov 22, 2021
3aa99d2
adding a htaccess file to configure deploy to be served at apache server
howmarketing Nov 22, 2021
34d3ef4
Creating a generic svg component to user wallet avatar
howmarketing Nov 22, 2021
7b464d1
Changing meta data displayed at website routes
howmarketing Nov 22, 2021
729ae82
Creating a root component to export simple svgs files data as react c…
howmarketing Nov 22, 2021
5533506
Testing the usage of svg display at user details
howmarketing Nov 22, 2021
11eb19e
Adding some configurate props to be able to make a deploy. IMPORTANT …
howmarketing Nov 22, 2021
7d0fd9d
It was necessary to disable ts checker for js imported modules at the…
howmarketing Nov 22, 2021
010abe3
Changing personal application descriptions to production application
howmarketing Nov 22, 2021
65bdb8b
Just removing breakline
howmarketing Nov 22, 2021
66d81b4
Applying some typescript necessary changes to these modules can be bu…
howmarketing Nov 22, 2021
4a643a5
creating a rewriter uikit components to be able to change all behaivo…
howmarketing Nov 22, 2021
2f21a33
Setting small changes to default components to start to use the rewri…
howmarketing Nov 22, 2021
2f1e2ca
.
howmarketing Nov 22, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
9 changes: 8 additions & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
REACT_APP_API_PROFILE = https://profile.pancakeswap.com
REACT_APP_API_PROFILE = https://profile.pancakeswap.com


# PORT=3000
# HTTPS=true
# SSL_CRT_FILE=./../../../ssl.cert
# SSL_KEY_FILE=./../../../ssl.key
# REACT_APP_ARIZAPP_API="https://arizap.com.br:3000/"
6 changes: 6 additions & 0 deletions .env.development
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,9 @@ REACT_APP_SNAPSHOT_BASE_URL = "https://testnet.snapshot.org"
REACT_APP_SNAPSHOT_VOTING_API = "https://xtjyd0liqe.execute-api.ap-northeast-1.amazonaws.com/dev/api"

REACT_APP_API_NFT = "https://nft.pancakeswap.com/api/v1"

# REACT_APP_CHOKIDAR_USEPOLLING=true
CHOKIDAR_USEPOLLING=true
REACT_APP_FAST_REFRESH=false
FAST_REFRESH=false
ESLINT_NO_DEV_ERRORS=true
3 changes: 3 additions & 0 deletions .env.production
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# DISABLE_ESLINT_PLUGIN=true

REACT_APP_CHAIN_ID = "56"
REACT_APP_GTAG = "GTM-TLF66T4"

Expand All @@ -22,3 +24,4 @@ REACT_APP_SNAPSHOT_BASE_URL = "https://hub.snapshot.org"
REACT_APP_SNAPSHOT_VOTING_API = "https://voting-api.pancakeswap.info/api"

REACT_APP_API_NFT = "https://nft.pancakeswap.com/api/v1"
ESLINT_NO_DEV_ERRORS=true
80 changes: 63 additions & 17 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,38 +1,84 @@
{
//"parser": "babel-eslint",
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"settings": {
"import/resolver": {
"node": {
"paths": ["./src"]
"paths": [
"./src"
]
}
}
},
// "env": { "es6": true, "browser": true, "jest": false},
"env": {
"es6": true,
"browser": true,
"jest": true
"es2021": true,
"node": true
},
"extends": "@pancakeswap/eslint-config-pancake",
// "extends": ["standard","prettier"],
// "plugins": ["@typescript-eslint","prettier"],
// "extends": "react-scripts/eslint-config-react-app",
"rules": {
"no-console": ["warn", { "allow": ["info", "warn", "error", "debug"] }],
"no-plusplus": 0,
"prefer-destructuring": ["warn", { "object": true, "array": false }],
"prettier/prettier": 1,
"no-console": [
"warn",
{
"allow": [
"info",
"warn",
"error",
"debug"
]
}
],
"no-plusplus": 1,
"prefer-destructuring": [
"warn",
{
"object": true,
"array": false
}
],
"no-underscore-dangle": 0,
"import/prefer-default-export": 0,
"import/prefer-default-export": 1,
// Start temporary rules
// These rules are here just to keep the lint error to 0 during the migration to the new rule set
// They need to be removed and fixed as soon as possible
"@typescript-eslint/ban-ts-comment": [1, { "ts-ignore": false, "ts-nocheck": false }],
"@typescript-eslint/no-use-before-define": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
// "@typescript-eslint/ban-ts-comment": [1,{"ts-ignore": true,"ts-nocheck": true}],
// "@typescript-eslint/ban-ts-comment": 0,
"@typescript-eslint/explicit-module-boundary-types": 1,
"@typescript-eslint/no-explicit-any": 0,
"radix": 0,
"import/no-extraneous-dependencies": 0,
"jsx-a11y/media-has-caption": 0,
"radix": 1,
"import/no-extraneous-dependencies": "off",
"jsx-a11y/media-has-caption": "off",
// Exchange
"no-param-reassign": ["error", { "props": true, "ignorePropertyModificationsFor": ["state", "memo"] }],
"no-param-reassign": [
"warn",
{
"props": true,
"ignorePropertyModificationsFor": [
"state",
"memo"
]
}
],
"react/require-default-props": 0,
"no-nested-ternary": 0,
"max-classes-per-file": 0
"max-classes-per-file": 0,
// End temporary rules
"no-use-before-define": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/ban-ts-comment": "off",
// "react/jsx-filename-extension": ["warn",{"extensions": [".tsx"]}],
"react/jsx-filename-extension": "off",
"react/prop-types": "off",
// "react/jsx-no-bind": ["error"],
"react/jsx-no-bind": "off"
}
}
}
1 change: 0 additions & 1 deletion .github/CODEOWNERS

This file was deleted.

84 changes: 0 additions & 84 deletions .github/ISSUE_TEMPLATE/bug-report.yaml

This file was deleted.

1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE/config.yml

This file was deleted.

37 changes: 0 additions & 37 deletions .github/ISSUE_TEMPLATE/feature-request.yaml

This file was deleted.

7 changes: 0 additions & 7 deletions .github/ISSUE_TEMPLATE/something-else.md

This file was deleted.

4 changes: 0 additions & 4 deletions .github/pull_request_template.md

This file was deleted.

45 changes: 0 additions & 45 deletions .github/workflows/format.yml

This file was deleted.

22 changes: 0 additions & 22 deletions .github/workflows/integrationTests.yml

This file was deleted.

38 changes: 0 additions & 38 deletions .github/workflows/lint.yml

This file was deleted.

Loading