Skip to content

Instantly share code, notes, and snippets.

View thenriquedb's full-sized avatar
🐳

Thiago Henrique Domingues thenriquedb

🐳
View GitHub Profile
const { resolve } = require('path');
module.exports = {
'config': resolve(__dirname, 'src', 'config', 'database.js'),
'models-path': resolve(__dirname, 'src', 'app', 'models'),
'seeders-path': resolve(__dirname, 'src', 'database', 'seeders'),
'migrations-path': resolve(__dirname, 'src', 'database', 'migrations'),
};
module.exports = {
env: {
es6: true,
node: true
},
extends: ["airbnb-base"],
globals: {
Atomics: "readonly",
SharedArrayBuffer: "readonly"
},
@thenriquedb
thenriquedb / settings.json
Last active July 29, 2020 19:55
My VSCode settings
{
// Define o tema do VSCode
"workbench.colorTheme": "Dracula",
// Configura tamanho e família da fonte
"editor.fontSize": 12,
"editor.lineHeight": 24,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.formatOnSave": false,