Created
December 21, 2019 21:50
-
-
Save onimenotsuki/7c2835b2ee7e2ac6957c13d9d05a7540 to your computer and use it in GitHub Desktop.
Cofiguracióones default para proyectos de Tech Talent
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 = { | |
extends: ['airbnb', 'prettier'], | |
plugins: ['prettier'], | |
rules: { | |
'import/no-extraneous-dependencies': 0, | |
// Admit use of console.log and derivates in app | |
'no-console': 0, | |
'prettier/prettier': 'error', | |
}, | |
globals: { | |
graphql: true, | |
window: true, | |
}, | |
env: { | |
browser: true, | |
}, | |
}; |
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 = { | |
printWidth: 80, | |
proseWrap: 'preserve', | |
semi: true, | |
singleQuote: true, | |
quoteProps: 'as-needed', | |
useTabs: false, | |
tabWidth: 2, | |
arrowParens: 'always', | |
trailingComma: 'all', | |
bracketSpacing: true, | |
}; |
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
{ | |
"editor.tabSize": 2, | |
"editor.formatOnSave": true, | |
"editor.renderWhitespace": "all", | |
"eslint.enable": true, | |
"[javascript]": { | |
"editor.defaultFormatter": "esbenp.prettier-vscode" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment