Skip to content

Commit

Permalink
Merge pull request #2 from alecspringel/feature/project-section
Browse files Browse the repository at this point in the history
Feature/project section
  • Loading branch information
alecspringel authored Dec 2, 2021
2 parents 11c0bcf + 64a573b commit 27844f9
Show file tree
Hide file tree
Showing 28 changed files with 949 additions and 770 deletions.
31 changes: 31 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
module.exports = {
env: {
browser: true,
es6: true,
},
extends: [
'plugin:react/recommended',
'airbnb',
],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',
},
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
sourceType: 'module',
},
plugins: [
'react',
],
rules: {
"react/jsx-filename-extension": 0,
"linebreak-style": 0,
"react/prop-types": 0,
"no-shadow": 0,
"react/jsx-props-no-spreading": 0,
},
};
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
16.13.0
Loading

0 comments on commit 27844f9

Please sign in to comment.