Matheus Sampaio Queiroga
37d2c52a4e
Some checks failed
Teste / Test in node ${{ matrix.node }} (14.x) (push) Successful in 50s
Teste / Test in node ${{ matrix.node }} (15.x) (push) Failing after 37s
Teste / Test in node ${{ matrix.node }} (16.x) (push) Failing after 35s
Teste / Test in node ${{ matrix.node }} (17.x) (push) Failing after 35s
Teste / Test in node ${{ matrix.node }} (18.x) (push) Successful in 41s
Teste / Test in node ${{ matrix.node }} (19.x) (push) Successful in 38s
Teste / Test in node ${{ matrix.node }} (20.x) (push) Successful in 39s
Signed-off-by: Matheus Sampaio Queiroga <srherobrine20@gmail.com>
29 lines
858 B
JSON
29 lines
858 B
JSON
{
|
|
"files.eol": "\n",
|
|
"files.encoding": "utf8",
|
|
"files.defaultLanguage": "javascript",
|
|
"files.trimFinalNewlines": true,
|
|
"files.trimTrailingWhitespace": true,
|
|
"editor.tabSize": 2,
|
|
"editor.insertSpaces": true,
|
|
"editor.minimap.enabled": false,
|
|
"editor.detectIndentation": false,
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit",
|
|
"source.fixAll": "never"
|
|
},
|
|
"files.exclude": {
|
|
"**/node_modules/": true,
|
|
"**/src/**/*.js": true,
|
|
"**/src/**/*.d.ts": true,
|
|
},
|
|
"terminal.integrated.env.windows": {
|
|
"PATH": "${workspaceFolder}/node_modules/.bin;${env:PATH}"
|
|
},
|
|
"terminal.integrated.env.linux": {
|
|
"PATH": "${workspaceFolder}/node_modules/.bin:${env:PATH}"
|
|
},
|
|
"terminal.integrated.env.osx": {
|
|
"PATH": "${workspaceFolder}/node_modules/.bin:${env:PATH}"
|
|
}
|
|
} |