Skip to content

Commit 96781fe

Browse files
Merge pull request #166 from OpenDTU-App/161-add-in-app-error-logging
2 parents c2cf80b + 1e528c4 commit 96781fe

File tree

24 files changed

+1317
-309
lines changed

24 files changed

+1317
-309
lines changed

.editorconfig

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
indent_size = 4
7+
indent_style = space
8+
insert_final_newline = true
9+
max_line_length = 120
10+
tab_width = 4
11+
trim_trailing_whitespace = true
12+
13+
[{*.ats,*.cts,*.mts,*.ts,*.tsx}]
14+
indent_size = 2
15+
tab_width = 2
16+
17+
[{*.cjs,*.js,*.mjs,*.jsx}]
18+
indent_size = 2
19+
tab_width = 2
20+
21+
[{*.graphqlconfig,*.graphqlrc,*.har,*.jsb2,*.jsb3,*.json,*.jsonc,*.postman_collection,*.postman_collection.json,*.postman_environment,*.postman_environment.json,.babelrc,.eslintrc,.stylelintrc,.ws-context,jest.config}]
22+
indent_size = 4
23+
24+
[{*.yml,*.yaml}]
25+
indent_size = 2
26+
tab_width = 2

.idea/i18nally.json

Lines changed: 49 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

__mocks__/react-native-share.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/**
2+
* @format
3+
*/
4+
/* eslint-env jest */
5+
6+
jest.mock('react-native-share', () => ({
7+
default: jest.fn(),
8+
}));
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/**
2+
* @format
3+
*/
4+
/* eslint-env jest */
5+
6+
jest.mock('react-native-toast-message', () => ({
7+
show: jest.fn(),
8+
hide: jest.fn(),
9+
}));

0 commit comments

Comments
 (0)