Skip to content

Commit 657cabb

Browse files
committed
transitions
1 parent 2c4686e commit 657cabb

21 files changed

+7272
-0
lines changed

transitions/.eslintrc.json

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"extends": [
3+
"eslint:recommended",
4+
"plugin:import/errors",
5+
"plugin:react/recommended",
6+
"plugin:jsx-a11y/recommended",
7+
"plugin:react-hooks/recommended",
8+
"prettier"
9+
],
10+
"rules": {
11+
"react/prop-types": 0,
12+
"react/react-in-jsx-scope": 0
13+
},
14+
"plugins": ["react", "import", "jsx-a11y"],
15+
"parserOptions": {
16+
"ecmaVersion": 2022,
17+
"sourceType": "module",
18+
"ecmaFeatures": {
19+
"jsx": true
20+
}
21+
},
22+
"env": {
23+
"es6": true,
24+
"browser": true,
25+
"node": true
26+
},
27+
"settings": {
28+
"react": {
29+
"version": "detect"
30+
},
31+
"import/resolver": {
32+
"node": {
33+
"extensions": [".js", ".jsx"]
34+
}
35+
}
36+
}
37+
}

transitions/.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
node_modules
2+
.parcel-cache/
3+
dist/
4+
.env
5+
.DS_Store
6+
coverage/
7+
.vscode/

transitions/.prettierrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{}

0 commit comments

Comments
 (0)