Skip to content

Commit ae8eff5

Browse files
committed
Hooks Rewrite
1 parent b362b40 commit ae8eff5

File tree

115 files changed

+9620
-15128
lines changed

Some content is hidden

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

115 files changed

+9620
-15128
lines changed

.DS_Store

0 Bytes
Binary file not shown.

.babelrc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"presets": [
3+
[
4+
"env",
5+
{
6+
"modules": false
7+
}
8+
],
9+
"stage-0",
10+
"react"
11+
],
12+
"plugins": ["babel-plugin-transform-class-properties"]
13+
}

.editorconfig

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true

.eslintrc

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"parser": "babel-eslint",
3+
"extends": [
4+
"standard",
5+
"standard-react"
6+
],
7+
"env": {
8+
"es6": true
9+
},
10+
"plugins": [
11+
"react"
12+
],
13+
"parserOptions": {
14+
"sourceType": "module"
15+
},
16+
"rules": {
17+
// don't force es6 functions to include space before paren
18+
"space-before-function-paren": 0,
19+
20+
// allow specifying true explicitly for boolean props
21+
"react/jsx-boolean-value": 0
22+
}
23+
}

.eslintrc.js

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

.gitignore

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
1-
yarn-error.log*
2-
yarn-error.log
3-
yarn-debug.log*
4-
npm-debug.log*
5-
npm-debug.log*
1+
2+
# See https://help.github.com/ignore-files/ for more about ignoring files.
3+
4+
# dependencies
65
node_modules
7-
dist
6+
7+
# builds
88
build
9-
/umd
10-
/node_modules
11-
/lib
12-
/es
13-
/demo/dist
14-
/coverage
15-
.env.test.local
16-
.env.production.local
9+
dist
10+
.rpt2_cache
11+
12+
# misc
13+
.DS_Store
14+
.env
1715
.env.local
1816
.env.development.local
19-
.env
20-
.history
21-
.DS_Store
22-
23-
17+
.env.test.local
18+
.env.production.local
2419

20+
npm-debug.log*
21+
yarn-debug.log*
22+
yarn-error.log*
23+
.history

0 commit comments

Comments
 (0)