-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
using only npmignore since it has unpredicatble behavior when used wi…
…th files in package.json (#346)
- Loading branch information
1 parent
a2f146d
commit 72f43ea
Showing
2 changed files
with
86 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,93 @@ | ||
**/__fixtures__ | ||
**/__mocks__ | ||
**/__tests__ | ||
android/.gradle | ||
android/.idea | ||
android/build | ||
*.log | ||
.circleci | ||
.detoxrc.json | ||
.env | ||
.github | ||
.husky | ||
coverage | ||
dev-app | ||
docs | ||
e2e | ||
example-app | ||
fastlane | ||
ios/build | ||
junit.xml | ||
lib/typescript/dev-app | ||
node_modules | ||
npm-debug.log* | ||
.yarnrc | ||
|
||
# OSX | ||
# | ||
.DS_Store | ||
|
||
# Xcode | ||
# | ||
build/ | ||
*.pbxuser | ||
!default.pbxuser | ||
*.mode1v3 | ||
!default.mode1v3 | ||
*.mode2v3 | ||
!default.mode2v3 | ||
*.perspectivev3 | ||
!default.perspectivev3 | ||
xcuserdata | ||
*.xccheckout | ||
*.moved-aside | ||
DerivedData | ||
*.hmap | ||
*.ipa | ||
*.xcuserstate | ||
project.xcworkspace | ||
|
||
# Android/IJ | ||
# | ||
.idea | ||
.gradle | ||
local.properties | ||
android/.gradle | ||
android/.idea | ||
android/build | ||
android/src/test | ||
|
||
# Tests | ||
*.snap | ||
**/__fixtures__ | ||
**/__mocks__ | ||
**/__tests__ | ||
**/*.test.js | ||
**/*.test.jsx | ||
**/*.test.ts | ||
**/*.test.d.ts | ||
**/*.test.tsx | ||
jest.eslint.config.js | ||
jestSetup.js | ||
|
||
# TS configs | ||
tsconfig.build.json | ||
tsconfig.json | ||
tsconfig-strict.json | ||
tslint.json | ||
|
||
# Eslint | ||
.eslintignore | ||
.eslintrc.js | ||
.eslintrc | ||
|
||
# Docs | ||
CONTRIBUTING.md | ||
CODE_OF_CONDUCT.md | ||
CODEOWNERS | ||
|
||
# Other | ||
Brewfile | ||
babel.config.js | ||
.watchmanconfig | ||
.logo.png | ||
.grenrc.js | ||
.clang-format | ||
.prettierrc | ||
.editorconfig | ||
.gitattributes | ||
.node-version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters