Skip to content
This repository was archived by the owner on Apr 14, 2020. It is now read-only.

Commit 9aa4945

Browse files
committed
feat: introduces internal composable api
Refactors internals to enable a composable api for animations, this also introduces two new animations "Reveal" and "FadeMove", which are both used in "RevealMove" and "CrossFadeMove".
1 parent 323abff commit 9aa4945

33 files changed

Lines changed: 1249 additions & 1005 deletions

File tree

.eslintrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,15 @@
99
"rules": {
1010
"typescript/class-name-casing": "error",
1111
"typescript/no-unused-vars": "error",
12+
"no-unused-vars": "off",
1213
"react/jsx-filename-extension": ["error", { "extensions": [".tsx"] }],
1314
"import/no-unresolved": "off",
1415
"no-undef": "off",
1516
"arrow-body-style": "off",
1617
"no-restricted-globals": "off",
1718
"no-multi-str": "off",
19+
"react/prefer-stateless-function": "never",
20+
"react/sort-comp": "off",
1821
"import/no-extraneous-dependencies": [
1922
"error",
2023
{ "devDependencies": ["**/*test.tsx", "**/*stories.tsx"] }

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ node_js:
33
- '9.11.2'
44
script:
55
- yarn test
6-
- yarn lint
76
- yarn build
87
before_install:
98
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.6.0

.vscode/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@
66
"**/docs/**": true
77
},
88
"typescript.tsdk": "node_modules/typescript/lib",
9-
"eslint.enable": true
9+
"eslint.validate": ["javascript", "javascriptreact", "typescript", "typescriptreact"]
1010
}

0 commit comments

Comments
 (0)