Skip to content

Commit

Permalink
Merge pull request #8 from nyaruka/upgrade
Browse files Browse the repository at this point in the history
🚀 Converts app to same build setup as floweditor
  • Loading branch information
rowanseymour authored Jul 24, 2019
2 parents 9980249 + cd3b03f commit 5b5e431
Show file tree
Hide file tree
Showing 20 changed files with 10,483 additions and 12,437 deletions.
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
build/
coverage/
node_modules/
24 changes: 24 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"plugins": ["prettier"],
"env": {
"browser": true,
"jest": true
},
"rules": {
"prettier/prettier": ["error", { "singleQuote": true }]
},
"settings": {
"react": {
"pragma": "React",
"version": "detect"
}
},
"parser": "@typescript-eslint/parser"
}
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package.json
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"printWidth": 100,
"tabWidth": 2,
"singleQuote": true,
"jsxBracketSameLine": false
}
3 changes: 3 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build]
command = "yarn run build"
publish = "build"
Loading

0 comments on commit 5b5e431

Please sign in to comment.