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
> Task :react-native-gesture-handler:compileDebugJavaWithJavac | |
Note: Some input files use or override a deprecated API. | |
Note: Recompile with -Xlint:deprecation for details. | |
Note: Some input files use unchecked or unsafe operations. | |
Note: Recompile with -Xlint:unchecked for details. | |
> Task :react-native-reanimated:compileDebugJavaWithJavac | |
Note: .../node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/NodesManager.java uses or overrides a deprecated API. | |
Note: Recompile with -Xlint:deprecation for details. | |
Note: .../node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/NodesManager.java uses unchecked or unsafe operations. |
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
FAILURE: Build failed with an exception. | |
* Where: | |
Script '/home/luizmarques/Development/gostack/nivel-03/gobarber-mobile-app-old/node_modules/react-native/react.gradle' line: 32 | |
* What went wrong: | |
A problem occurred configuring project ':app'. | |
> Cannot run program "node" (in directory "/home/luizmarques/Development/gostack/nivel-03/gobarber-mobile-app-old/android/app"): error=2, No such file or directory | |
❯ ./gradlew clean |
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
> Task :react-native-reanimated:androidJavadoc | |
.../node_modules/react-native-reanimated/android/src/main/java/com/facebook/react/uimanager/UIManagerReanimatedHelper.java:11: error: cannot find symbol | |
public static boolean isOperationQueueEmpty(UIImplementation uiImplementation) { | |
^ | |
symbol: class UIImplementation | |
location: class UIManagerReanimatedHelper | |
.../node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/NodesManager.java:5: error: package com.facebook.react.bridge does not exist | |
import com.facebook.react.bridge.Arguments; | |
^ | |
.../node_modules/react-native-reanimated/android/src/main/java/com/swmansion/reanimated/NodesManager.java:6: error: package com.facebook.react.bridge does not exist |
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
{ | |
"window.menuBarVisibility": "toggle", | |
"window.zoomLevel": 0, | |
"workbench.colorTheme": "Aura Dark", | |
"workbench.iconTheme": "material-icon-theme", | |
"workbench.editor.labelFormat": "short", | |
"workbench.editor.wrapTabs": true, | |
"workbench.productIconTheme": "fluent-icons", |
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
// Place your key bindings in this file to override the defaultsauto[] | |
[ | |
{ | |
"key": "ctrl+shift+d", | |
"command": "-workbench.view.debug", | |
"when": "viewContainer.workbench.view.debug.enabled" | |
}, | |
{ | |
"key": "ctrl+shift+d", | |
"command": "editor.action.duplicateSelection" |
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
code --install-extension dbaeumer.vscode-eslint | |
code --install-extension eamodio.gitlens | |
code --install-extension ecmel.vscode-html-css | |
code --install-extension EditorConfig.EditorConfig | |
code --install-extension esbenp.prettier-vscode | |
code --install-extension styled-components.vscode-styled-components | |
code --install-extension mikestead.dotenv | |
code --install-extension ms-azuretools.vscode-azurefunctions ** | |
code --install-extension ms-azuretools.vscode-azureresourcegroups ** | |
code --install-extension ms-azuretools.vscode-docker ** |
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
yarn add eslint prettier -D | |
/* NEXT */ - (dont need to install eslint) | |
yarn add eslint-plugin-import-helpers@latest eslint-config-prettier eslint-plugin-prettier -D | |
/* REACT */ | |
yarn add eslint-plugin-react@^7.21.5 eslint-config-airbnb@latest eslint-plugin-import@^2.25.2 eslint-plugin-import-helpers@latest eslint-import-resolver-typescript eslint-plugin-jsx-a11y@^6.4.1 eslint-plugin-react-hooks@^4 @typescript-eslint/eslint-plugin@latest @typescript-eslint/parser@latest eslint-config-prettier eslint-plugin-prettier -D | |
/* NODE */ | |
yarn add eslint-config-airbnb-base@latest eslint-plugin-import@^2.25.2 eslint-plugin-import-helpers@latest eslint-import-resolver-typescript @typescript-eslint/eslint-plugin@latest @typescript-eslint/parser@latest eslint-config-prettier eslint-plugin-prettier -D |
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
sudo apt install ubuntu-restricted-extras | |
sudo apt install python3-pip | |
sudo apt install curl | |
sudo apt install gzip | |
sudo apt install fonts-firacode | |
sudo apt install git | |
sudo apt install docker-ce | |
sudo apt install docker-ce-cli | |
sudo apt install gdebi |
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
[core] | |
excludesfile = ~/.gitignore_global | |
editor = vim | |
[color "status"] | |
added = green | |
changed = yellow | |
untracked = red | |
[color "branch"] |
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
# editor | |
vscode | |
.vscode | |
# dependencies | |
**/node_modules | |
# testing | |
coverage |
OlderNewer