This repository has been archived on 2024-09-15. You can view files and clone it, but cannot push or open issues or pull requests.
neste/.vscode/settings.json
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
Add next.js middler and Update code
Signed-off-by: Matheus Sampaio Queiroga <srherobrine20@gmail.com>
2023-12-15 22:45:29 -03:00

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}"
}
}