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

Commit

Permalink
Merge pull request #23
Browse files Browse the repository at this point in the history
Release v0.3.0-rc0
  • Loading branch information
bsrinivas8687 authored Feb 21, 2021
2 parents a614c8e + 908e9ab commit 5846fb7
Show file tree
Hide file tree
Showing 411 changed files with 21,648 additions and 3,769 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SKIP_PREFLIGHT_CHECK=true
REACT_APP_VERSION=$npm_package_version
6 changes: 4 additions & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
/build/
/dist/
/bin
/build
/cli
/dist
71 changes: 40 additions & 31 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,86 +1,95 @@
{
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"standard"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 2018,
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"react"
"react",
"sort-imports-es6-autofix"
],
"settings": {
"react": {
"version": "detect"
}
},
"rules": {
"indent": [
2,
"error",
4
],
"arrow-parens": [
2,
"error",
"always"
],
"semi": [
2,
"error",
"always"
],
"comma-dangle": [
2,
"error",
"always-multiline"
],
"jsx-quotes": [
2
],
"dot-notation": [
2,
{
"allowPattern": "^[0-9A-Za-z]+(_[0-9A-Za-z]+)+$"
}
"error"
],
"curly": [
2,
"error",
"all"
],
"react/jsx-first-prop-new-line": [
2,
"error",
"multiline-multiprop"
],
"react/jsx-indent-props": [
2,
"error",
"first"
],
"react/sort-prop-types": [
2,
"error",
{
"callbacksLast": true,
"requiredFirst": true
}
],
"react/jsx-sort-props": [
2,
"error",
{
"callbacksLast": true,
"reservedFirst": true,
"shorthandFirst": true
}
]
],
"sort-imports-es6-autofix/sort-imports-es6": [
"warn",
{
"ignoreCase": false,
"ignoreMemberSort": false,
"memberSyntaxSortOrder": [
"none",
"all",
"multiple",
"single"
]
}
],
"dot-notation": [
"error",
{
"allowPattern": "^[a-z]+(_[a-z]+)+$"
}
],
"react/sort-comp": 2
},
"settings": {
"react": {
"version": "detect"
}
}
}
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
.env.local
.env.production.local
.env.test.local
.idea
.eslintcache
/.idea
/node_modules
npm-debug.log*
/.pnp
.pnp.js
.vscode
yarn-debug.log*
yarn-error.log*
72 changes: 0 additions & 72 deletions .golangci.yml

This file was deleted.

Loading

0 comments on commit 5846fb7

Please sign in to comment.