Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: on error empty null source [#1028] #1039

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
root = true

[*]
end_of_line = lf
insert_final_newline = true

[*.{js,json,yml}]
charset = utf-8
indent_style = space
indent_size = 2
4 changes: 4 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/.yarn/** linguist-vendored
/.yarn/releases/* binary
/.yarn/plugins/**/* binary
/.pnp.* binary linguist-generated
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ local.properties
node_modules/
npm-debug.log
lib/android/src/main/gen
example/android/app/src/main/gen
ReactNativeFastImageExample/android/app/src/main/gen

# build
react-native-fast-image-*.tgz
Expand All @@ -49,3 +49,9 @@ coverage

# TypeScript incremental compilation cache
*.tsbuildinfo

#yarn
.yarn
ReactNativeFastImageExample/.yarn
ReactNativeFastImageExampleServer/.yarn

2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/ReactNativeFastImageExample/
/ReactNativeFastImageExampleOld/
/ReactNativeFastImageExampleServer/
node_modules
coverage
Loading