Skip to content

Instantly share code, notes, and snippets.

View manueldevjour's full-sized avatar
:shipit:

Manuel Cerezo manueldevjour

:shipit:
View GitHub Profile
@manueldevjour
manueldevjour / .prettierrc.js
Last active March 19, 2023 23:21
Own Prettierrc file I use
module.exports = {
trailingComma: 'none',
tabWidth: 2,
semi: true,
singleQuote: true,
printWidth: 120,
bracketSpacing: true
};
@manueldevjour
manueldevjour / .eslintrc.js
Created March 20, 2023 11:13
WIP: Temporal use of lintr because of a mixing of different projects
module.exports = {
extends: ['next', 'prettier'],
env: {
browser: true,
es6: true,
node: true
},
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 6,