Minhas configurações basicas de lint para utilizar no react native (javascript)
Neste Gist você encontra as mesmas configurações que eu utilizo no meu ambiente
This file contains hidden or 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
module.exports = { | |
config: { | |
updateChannel: 'stable', | |
webGLRenderer : false, | |
fontFamily: 'MesloLGS NF', | |
fontWeight: 'normal', | |
fontWeightBold: 'bold', | |
cursorColor: 'rgba(248,28,229,0.8)', | |
cursorAccentColor: '#000', | |
cursorShape: 'BLOCK', |
This file contains hidden or 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
{ | |
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | |
"terminal.integrated.fontSize": 14, | |
"terminal.integrated.fontFamily": "MesloLGS NF", | |
"terminal.integrated.cursorBlinking": false, | |
"terminal.integrated.enableBell": false, | |
"terminal.integrated.rendererType": "experimentalWebgl", | |
"terminal.integrated.unicodeVersion": "11", | |
"terminal.integrated.copyOnSelection": false, |