Skip to content

Commit

Permalink
Merge pull request #39 from kwar0715/add-js-programming-console
Browse files Browse the repository at this point in the history
Add js programming console
  • Loading branch information
kwar0715 committed Sep 25, 2019
2 parents 1446d95 + 4510e5e commit ff03132
Show file tree
Hide file tree
Showing 6 changed files with 589 additions and 394 deletions.
24 changes: 24 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"parser": "babel-eslint",
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": ["error", { "singleQuote": true }],
"jsx-a11y/href-no-hash": "off",
"no-underscore-dangle": "off",
"class-methods-use-this": "off",
"no-console": "off"
},
"env": {
"es6": false,
"node": true,
"jest": true
},
"extends": [
"airbnb-base/legacy",
"prettier"
]
}


3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules/
resource/database/
**/logs
**/logs
.idea/
Loading

0 comments on commit ff03132

Please sign in to comment.