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

Commit 00963ed

Browse files
committed
Initial
1 parent 405d5a5 commit 00963ed

23 files changed

+16010
-0
lines changed

.babelrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"presets": ["env", "react"],
3+
"plugins": [
4+
["lodash", { "id": ["lodash", "recompose"] }],
5+
"transform-object-rest-spread"
6+
]
7+
}

.editorconfig

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
root = true
5+
[*]
6+
# Change these settings to your own preference
7+
indent_style = space
8+
indent_size = 2
9+
# We recommend you to keep these unchanged
10+
end_of_line = lf
11+
charset = utf-8
12+
trim_trailing_whitespace = true
13+
insert_final_newline = true
14+
[*.md]
15+
trim_trailing_whitespace = false

.eslintignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/*

.eslintrc

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"extends": "norigin/react",
3+
"rules": {
4+
"indent": ["error", 2],
5+
"new-cap": ["error", {"capIsNew": false}],
6+
"quotes": ["error", "single", "avoid-escape"],
7+
"react/jsx-indent": ["error", 2],
8+
"react/jsx-indent-props": ["error", 2],
9+
"react/jsx-closing-bracket-location": ["off"],
10+
"react/jsx-closing-tag-location": ["off"],
11+
"react/jsx-curly-brace-presence": ["error", {"props": "always"}],
12+
"react/boolean-prop-naming": ["off"],
13+
"arrow-body-style": ["error", "as-needed"],
14+
"import/extensions": ["error", "never"],
15+
"no-console": ["error", {"allow": ["warn", "error", "log"]}],
16+
"id-length": ["error", {"min": 1, "max": 60}]
17+
},
18+
"parser": "babel-eslint",
19+
"parserOptions": {
20+
"ecmaVersion": 7
21+
}
22+
}

.gitignore

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# OSX
2+
#
3+
.DS_Store
4+
5+
# Xcode
6+
#
7+
build/
8+
*.pbxuser
9+
!default.pbxuser
10+
*.mode1v3
11+
!default.mode1v3
12+
*.mode2v3
13+
!default.mode2v3
14+
*.perspectivev3
15+
!default.perspectivev3
16+
xcuserdata
17+
*.xccheckout
18+
*.moved-aside
19+
DerivedData
20+
*.hmap
21+
*.ipa
22+
*.xcuserstate
23+
project.xcworkspace
24+
25+
# Android/IntelliJ
26+
#
27+
.idea
28+
.gradle
29+
local.properties
30+
*.iml
31+
32+
# node.js
33+
#
34+
node_modules/
35+
npm-debug.log
36+
yarn-error.log
37+
38+
# BUCK
39+
buck-out/
40+
\.buckd/
41+
*.keystore
42+
43+
# fastlane
44+
#
45+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
46+
# screenshots whenever they are needed.
47+
# For more information about the recommended setup visit:
48+
# https://docs.fastlane.tools/best-practices/source-control/
49+
50+
*/fastlane/report.xml
51+
*/fastlane/Preview.html
52+
*/fastlane/screenshots
53+
54+
# Bundle artifact
55+
*.jsbundle
56+
57+
.cache
58+
parcel
59+
.idea

0 commit comments

Comments
 (0)