Skip to content

Commit 359aa9c

Browse files
Merge pull request #473 from CedricProfessionnel/FixEslint
Fix eslint (Feature Aws Part)
2 parents 9c24a99 + 007c8af commit 359aa9c

File tree

6 files changed

+1560
-1478
lines changed

6 files changed

+1560
-1478
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ CYPRESS_COGNITO_USER_PASS_LENGTH="0"
1212
CYPRESS_COGNITO_USER_PASS_REQUIRE_LOWERCASE=TRUE
1313
CYPRESS_COGNITO_USER_PASS_REQUIRE_UPPERCASE=TRUE
1414
CYPRESS_COGNITO_USER_PASS_REQUIRE_NUMBER=TRUE
15-
CYPRESS_COGNITO_USER_PASS_REQUIRE_SYMBOL=TRUE
15+
CYPRESS_COGNITO_USER_PASS_REQUIRE_SYMBOL=TRUE

.eslintignore

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

.eslintrc.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"parser": "babel-eslint",
3+
"plugins": ["cypress", "react"]
4+
}

cypress/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
11
videos
2+
snapshots
3+
screenshots
4+
.cache

package.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@
3232
"test:integration:dev": "dotenv cypress open",
3333
"test:integration": "dotenv cypress run failOnSnapshotDiff=false"
3434
},
35-
"eslintConfig": {
36-
"extends": "react-app"
37-
},
3835
"browserslist": {
3936
"production": [
4037
">0.2%",
@@ -64,6 +61,7 @@
6461
"@storybook/react": "^5.3.19",
6562
"@testing-library/react-hooks": "^3.2.1",
6663
"ava": "^3.7.0",
64+
"babel-eslint": "^10.1.0",
6765
"chroma-js": "^2.0.4",
6866
"concurrently": "^5.3.0",
6967
"cypress": "^6.4.0",
@@ -73,6 +71,7 @@
7371
"electron": "^11.2.3",
7472
"electron-builder": "^22.8.0",
7573
"electron-builder-notarize": "^1.2.0",
74+
"eslint-plugin-cypress": "^2.11.2",
7675
"gh-pages": "^2.1.1",
7776
"material-survey": "^1.0.40",
7877
"parcel": "^1.12.4",
@@ -109,7 +108,7 @@
109108
"in-browser-download": "^2.0.0",
110109
"jac-format": "^1.1.3",
111110
"js-md5": "^0.7.3",
112-
"mime-types": "^2.1.27",
111+
"mime-types": "^2.1.28",
113112
"moment": "^2.24.0",
114113
"nan": "^2.14.1",
115114
"posthog-js": "^1.0.4",
@@ -125,7 +124,7 @@
125124
"react-material-workspace-layout": "^1.0.9",
126125
"react-scripts": "^3.4.1",
127126
"react-select": "^3.0.8",
128-
"react-time-series": "^1.0.20",
127+
"react-time-series": "^1.0.21",
129128
"recoil": "^0.0.13",
130129
"rfc6902": "^3.0.4",
131130
"seamless-immutable": "^7.1.4",
@@ -135,8 +134,8 @@
135134
"serve": "^11.3.2",
136135
"styled-components": "^5.0.0",
137136
"udt-collaboration-server": "^1.0.8",
138-
"udt-dataset-managers": "^1.0.15",
139-
"udt-format": "0.0.1",
137+
"udt-dataset-managers": "^1.0.16",
138+
"udt-format": "^0.0.1",
140139
"use-async-effect": "^2.2.2",
141140
"use-event-callback": "^0.1.0",
142141
"wavesurfer.js": "^3.3.3",

0 commit comments

Comments
 (0)