Skip to content

Commit e23c72e

Browse files
committed
Merge branch 'develop' into single-server-4.18.0
# Conflicts: # __tests__/__snapshots__/Storyshots.test.js.snap # android/app/build.gradle # app/actions/actionsTypes.js # app/actions/permissions.js # app/constants/settings.js # app/containers/markdown/Link.js # app/i18n/locales/ar.json # app/i18n/locales/de.json # app/i18n/locales/en.json # app/i18n/locales/es-ES.json # app/i18n/locales/fr.json # app/i18n/locales/it.json # app/i18n/locales/ja.json # app/i18n/locales/nl.json # app/i18n/locales/pt-BR.json # app/i18n/locales/pt-PT.json # app/i18n/locales/ru.json # app/i18n/locales/tr.json # app/i18n/locales/zh-CN.json # app/i18n/locales/zh-TW.json # app/lib/methods/getPermissions.js # app/lib/methods/getRoles.js # app/lib/rocketchat.js # app/reducers/index.js # app/reducers/permissions.js # app/sagas/createChannel.js # app/sagas/deepLinking.js # app/sagas/init.js # app/sagas/login.js # app/sagas/room.js # app/sagas/selectServer.js # app/utils/log/events.js # app/views/RoomActionsView/index.js # app/views/RoomInfoEditView/index.js # app/views/RoomInfoView/index.js # app/views/RoomView/List/NavBottomFAB.js # app/views/RoomView/List/index.js # app/views/RoomsListView/Header/Header.js # app/views/RoomsListView/index.js # e2e/data.js # e2e/data/data.cloud.js # e2e/data/data.docker.js # e2e/helpers/app.js # e2e/helpers/data_setup.js # e2e/tests/assorted/01-e2eencryption.spec.js # e2e/tests/assorted/03-profile.spec.js # e2e/tests/assorted/04-setting.spec.js # e2e/tests/assorted/06-status.spec.js # e2e/tests/assorted/07-changeserver.spec.js # e2e/tests/assorted/09-joinfromdirectory.spec.js # e2e/tests/assorted/10-deleteserver.spec.js # e2e/tests/assorted/11-deeplinking.spec.js # e2e/tests/assorted/12-i18n.spec.js # e2e/tests/onboarding/01-onboarding.spec.js # e2e/tests/room/01-createroom.spec.js # e2e/tests/room/02-room.spec.js # e2e/tests/room/03-roomactions.spec.js # e2e/tests/room/04-discussion.spec.js # e2e/tests/room/05-threads.spec.js # e2e/tests/room/06-createdmgroup.spec.js # e2e/tests/room/07-markasunread.spec.js # e2e/tests/team/01-createteam.spec.js # e2e/tests/team/02-team.spec.js # e2e/tests/team/03-moveconvert.spec.js # ios/RocketChatRN.xcodeproj/project.pbxproj # ios/RocketChatRN/Info.plist # ios/ShareRocketChatRN/Info.plist # package.json
2 parents 513dff2 + d1f35bb commit e23c72e

File tree

110 files changed

+5485
-2609
lines changed

Some content is hidden

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

110 files changed

+5485
-2609
lines changed

.eslintignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__tests__
22
node_modules
33
coverage
4-
e2e
4+
e2e/docker
55
android
66
ios

.eslintrc.js

Lines changed: 21 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ module.exports = {
2929
"commonjs": true,
3030
"es6": true,
3131
"node": true,
32-
"jquery": true
32+
"jquery": true,
33+
"mocha": true
3334
},
3435
"rules": {
3536
"react/jsx-filename-extension": [1, {
@@ -155,5 +156,23 @@ module.exports = {
155156
},
156157
"globals": {
157158
"__DEV__": true
158-
}
159+
},
160+
overrides: [
161+
{
162+
files: ['e2e/**'],
163+
globals: {
164+
by: true,
165+
detox: true,
166+
device: true,
167+
element: true,
168+
expect: true,
169+
waitFor: true
170+
},
171+
rules: {
172+
'import/no-extraneous-dependencies': 0,
173+
'no-await-in-loop': 0,
174+
'no-restricted-syntax': 0
175+
}
176+
}
177+
]
159178
};

0 commit comments

Comments
 (0)