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

Commit 97ddeb9

Browse files
authored
Merge pull request #75 from madou/composable-animations
Composable animations
2 parents 323abff + f6a440e commit 97ddeb9

Some content is hidden

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

77 files changed

+9231
-5503
lines changed

.eslintrc

+3
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

-1
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

+1-1
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)