Skip to content

Commit

Permalink
feat(Feat): Adding groundwork for CreatePost
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenfitzpatrick committed Feb 14, 2018
1 parent 13ea839 commit d8e9a3b
Show file tree
Hide file tree
Showing 9 changed files with 563 additions and 784 deletions.
8 changes: 6 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,16 @@
"eslint:recommended",
"plugin:jest/recommended",
"plugin:jsx-a11y/recommended",
"plugin:react/recommended"
"plugin:react/recommended",
"prettier",
"prettier/react"
],
"parserOptions": {
"ecmaVersion": 8,
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
"jsx": true,
"classes": true
},
"sourceType": "module"
},
Expand Down
18 changes: 18 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:9000",
"webRoot": "${workspaceFolder}/src",
"sourceMapPathOverrides": {
"webpack:///src/*": "${webRoot}/*"
}
}
]
}
Loading

0 comments on commit d8e9a3b

Please sign in to comment.