Skip to content

Commit 744e82f

Browse files
feat(base) added base layout for app (#1)
* feat(base) POC * feat(eslint) added eslint
1 parent c006cf4 commit 744e82f

Some content is hidden

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

46 files changed

+16997
-0
lines changed

.env

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
SKIP_PREFLIGHT_CHECK=true

.eslintrc

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"parser": "babel-eslint",
3+
"plugins": [
4+
"prettier",
5+
"react"
6+
],
7+
"parserOptions": {
8+
"ecmaVersion": 2017,
9+
"sourceType": "module",
10+
"ecmaFeatures": {
11+
"jsx": true,
12+
"spread": true,
13+
"experimentalObjectRestSpread": true
14+
}
15+
},
16+
"globals": {
17+
"__DEV__": true,
18+
"fetch": true,
19+
"Promise": true,
20+
"window": true,
21+
"document": true,
22+
"navigator": true
23+
},
24+
"env": {
25+
"es6": true,
26+
"node": true
27+
},
28+
"extends": [
29+
"eslint:recommended",
30+
"plugin:react/recommended",
31+
"prettier"
32+
],
33+
"rules": {
34+
"max-len": [1, 120, 2, {"ignoreComments": true}],
35+
"prop-types": [0],
36+
"prettier/prettier": ["error", {
37+
"singleQuote": true,
38+
"trailingComma": "es5",
39+
"bracketSpacing": true,
40+
"jsxBracketSameLine": false,
41+
"parser": "babylon"
42+
}],
43+
"no-console": "off"
44+
}
45+
}

.git-commit-template.txt

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# HEADER
2+
# |<---- Using a Maximum Of 50 Characters ---->|
3+
<type>(<scope>): <subject>
4+
# Type can be
5+
# feat (A new feature)
6+
# fix (A bug fix)
7+
# docs (Documentation only changes)
8+
# style (Changes that do not affect the meaning of the code e.g. white-space, formatting, missing semi-colons, etc)
9+
# refactor (A code change that neither fixes a bug nor adds a feature)
10+
# perf (A code change that improves performance)
11+
# test (Adding missing or correcting existing tests)
12+
# chore (Changes to the build process or auxiliary tools and libraries such as documentation generation)
13+
# An optional scope specifies the place of the commit change, e.g. orderbook, p2p, proto, swaps, etc...
14+
# You can use * when the change affects more than a single scope.
15+
# The subject contains succinct description of the change:
16+
# Use the imperative, present tense: "change" not "changed" nor "changes"
17+
# Don't capitalize first letter
18+
# No dot (.) at the end
19+
20+
# BODY
21+
# Just as in the subject, use the imperative, present tense: "change" not "changed" nor "changes".
22+
# The body should include the motivation for the change and contrast this with previous behavior.
23+
# |<---- Try To Limit Each Line to a Maximum Of 72 Characters ---->
24+
25+
26+
# FOOTER
27+
# The footer should contain any information about Breaking Changes and is also the place to reference GitHub issues that this commit closes.
28+
# Breaking Changes should start with the word BREAKING CHANGE: with a space or two newlines. The rest of the commit message is then used for this.
29+
# |<---- Try To Limit Each Line to a Maximum Of 72 Characters ---->
30+
31+
# --- COMMIT END ---

.gitignore

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# production
12+
/build
13+
14+
# misc
15+
.DS_Store
16+
.env.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
21+
npm-debug.log*
22+
yarn-debug.log*
23+
yarn-error.log*

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
language: node_js
2+
node_js:
3+
- "lts/*"
4+
cache:
5+
directories:
6+
- node_modules
7+
script:
8+
- npm lint
9+
- npm run build

0 commit comments

Comments
 (0)