Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobo-martinez committed Dec 26, 2019
1 parent ef02ff1 commit f0b59fb
Show file tree
Hide file tree
Showing 31 changed files with 5,652 additions and 261 deletions.
18 changes: 18 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
module.exports = {
extends: ['airbnb', 'prettier'],
plugins: ['prettier'],
env: {
browser: true,
es6: true,
},
rules: {
'import/no-extraneous-dependencies': 'off',
'prettier/prettier': 'error',
'no-console': 'warn',
'react/jsx-one-expression-per-line': 'off',
'react/prefer-stateless-function': 'off', // disable if necessary
'react/jsx-filename-extension': 'off', // disable if necessary
'react/static-property-placement': 'off', // disable if necessary
},
parser: 'babel-eslint',
};
12 changes: 7 additions & 5 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
{
"endOfLine": "lf",
"semi": false,
"singleQuote": false,
"printWidth": 100,
"bracketSpacing": true,
"trailingComma": "es5",
"tabWidth": 2,
"trailingComma": "es5"
}
"semi": true,
"singleQuote": true,
"jsxSingleQuote": false
}
3 changes: 2 additions & 1 deletion gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@

module.exports = {
/* Your site config here */
}
plugins: [`gatsby-plugin-sass`],
};
Loading

0 comments on commit f0b59fb

Please sign in to comment.