Skip to content

Commit

Permalink
Full rework to use native components
Browse files Browse the repository at this point in the history
  • Loading branch information
vmurin committed Mar 15, 2018
1 parent c40c9f5 commit 1c84f55
Show file tree
Hide file tree
Showing 45 changed files with 2,555 additions and 2,073 deletions.
7 changes: 6 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
{
"presets": ["react-native"]
"presets": ["react-native"],
"plugins": [
["babel-plugin-transform-builtin-extend", {
"globals": ["Error", "Array"]
}]
]
}
67 changes: 3 additions & 64 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
module.exports = {
"parser": "babel-eslint",
"plugins": [
"flowtype"
"plugins": [
],
"env": {
"es6": true,
Expand All @@ -23,6 +22,7 @@ module.exports = {
"warn",
4
],
"no-console": 0,
"linebreak-style": [
"error",
"unix"
Expand All @@ -34,67 +34,6 @@ module.exports = {
"semi": [
"error",
"never"
],
"flowtype/boolean-style": [
2,
"boolean"
],
"flowtype/define-flow-type": 1,
"flowtype/delimiter-dangle": [
2,
"never"
],
"flowtype/generic-spacing": [
2,
"never"
],
"flowtype/no-primitive-constructor-types": 2,
"flowtype/no-types-missing-file-annotation": 2,
"flowtype/no-weak-types": 0,
"flowtype/object-type-delimiter": [
2,
"comma"
],
"flowtype/require-parameter-type": 2,
"flowtype/require-return-type": [
2,
"always",
{
"annotateUndefined": "never",
"excludeMatching": ["render"]
}
],
"flowtype/require-valid-file-annotation": 2,
"flowtype/semi": [
2,
"always"
],
"flowtype/space-after-type-colon": [
2,
"always"
],
"flowtype/space-before-generic-bracket": [
2,
"never"
],
"flowtype/space-before-type-colon": [
2,
"never"
],
"flowtype/type-id-match": [
0,
"^([A-Z][a-z0-9]+)+$"
],
"flowtype/union-intersection-spacing": [
2,
"always"
],
"flowtype/use-flow-type": 1,
"flowtype/valid-syntax": 1
},
"settings": {
"flowtype": {
"onlyFilesWithFlowAnnotation": true
}
]
}
};
97 changes: 0 additions & 97 deletions .flowconfig

This file was deleted.

Loading

0 comments on commit 1c84f55

Please sign in to comment.