Skip to content

Commit

Permalink
Form mostly done. Work on buttons left
Browse files Browse the repository at this point in the history
  • Loading branch information
SoumavaBanerjee committed Jan 3, 2021
1 parent 2a12a72 commit 5c1e657
Show file tree
Hide file tree
Showing 7 changed files with 573 additions and 118 deletions.
20 changes: 20 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": false,
"codeFrame": false
},
"extends": ["airbnb", "prettier"],
"env": {
"browser": true,
"jest": true
},
"rules": {
"max-len": ["error", {"code": 100}],
"prefer-promise-reject-errors": ["off"],
"react/jsx-filename-extension": ["off"],
"react/prop-types": ["warn"],
"no-return-assign": ["off"]
}
}
7 changes: 7 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"printWidth": 100,
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": true
}
Loading

0 comments on commit 5c1e657

Please sign in to comment.