Skip to content

Commit 21254b0

Browse files
authoredJan 3, 2024
chore: reformat source using prettier (#1550)
* chore: reformat source using prettier * chore: fix lint
1 parent 7899412 commit 21254b0

File tree

174 files changed

+847
-2215
lines changed

Some content is hidden

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

174 files changed

+847
-2215
lines changed
 

‎.editorconfig

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
[*]
8+
9+
indent_style = space
10+
indent_size = 2
11+
12+
end_of_line = lf
13+
charset = utf-8
14+
trim_trailing_whitespace = true
15+
insert_final_newline = true
16+
17+
max_line_length = 100

‎.eslintrc

+1-4
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,7 @@
66
"no-console": 1,
77
"react/no-multi-comp": 0,
88
// Ignore certain webpack alias because it can't be resolved
9-
"import/no-unresolved": [
10-
2,
11-
{ "ignore": ["^@theme", "^@docusaurus", "^@generated"] }
12-
],
9+
"import/no-unresolved": [2, { "ignore": ["^@theme", "^@docusaurus", "^@generated"] }],
1310
"react-native/no-color-literals": "off",
1411
"react-native/no-inline-styles": "off",
1512
"react-native-a11y/has-valid-accessibility-descriptors": "off",

0 commit comments

Comments
 (0)