-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(prettier): incorporate automatic formatting on commit * chore(prettier): normalize all source code to prettier style * feat(prettier): prettify additional filetypes * feat(prettier): prettify secrets, ignore package.json * chore(prettier): re-normalize according to stated prefs * feat(prettier): make automatic prettification opt-in * chore(prettier): prettify merged files (seed.js) * fix(scripts): re-remove prepush
- Loading branch information
Showing
23 changed files
with
5,779 additions
and
4,427 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
{ | ||
"root": true, | ||
"extends": "fullstack", | ||
"rules": { | ||
"semi": 0, | ||
"new-cap": [1, { "capIsNewExceptions": ["Router"] }] | ||
} | ||
"root": true, | ||
"extends": ["fullstack", "prettier", "prettier/react"], | ||
"rules": { | ||
"semi": 0 | ||
} | ||
} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
### Assignee Tasks | ||
|
||
- [ ] added unit tests (or none needed) | ||
- [ ] written relevant docs (or none needed) | ||
- [ ] referenced any relevant issues (or none exist) | ||
* [ ] added unit tests (or none needed) | ||
* [ ] written relevant docs (or none needed) | ||
* [ ] referenced any relevant issues (or none exist) | ||
|
||
### Guidelines | ||
|
||
Please add a description of this Pull Request's motivation, scope, outstanding issues or potential alternatives, reasoning behind the current solution, and any other relevant information for posterity. | ||
|
||
--- | ||
|
||
*Your PR Notes Here* | ||
_Your PR Notes Here_ |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
public/bundle.js | ||
public/bundle.js.map | ||
package-lock.json | ||
package.json |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# printWidth: 80 # 80 | ||
# tabWidth: 2 # 2 | ||
# useTabs: false # false | ||
semi: false # true | ||
singleQuote: true # false | ||
# trailingComma: none # none | es5 | all | ||
bracketSpacing: false # true | ||
# jsxBracketSameLine: false # false | ||
# arrowParens: avoid # avoid | always |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
import createHistory from 'history/createBrowserHistory' | ||
import createMemoryHistory from 'history/createMemoryHistory' | ||
|
||
const history = process.env.NODE_ENV === 'test' ? createMemoryHistory() : createHistory() | ||
const history = | ||
process.env.NODE_ENV === 'test' ? createMemoryHistory() : createHistory() | ||
|
||
export default history |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.