Skip to content

Commit

Permalink
Implement web-ui tentatively
Browse files Browse the repository at this point in the history
  • Loading branch information
elierotenberg committed Aug 26, 2017
1 parent 46e5fe5 commit 1d47910
Show file tree
Hide file tree
Showing 33 changed files with 53,727 additions and 702 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.dist.js
node_modules
8 changes: 5 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@ module.exports = {
es6: true,
node: true,
},
extends: ['eslint:recommended'],
extends: ['eslint:recommended', 'plugin:react/recommended'],
parser: 'babel-eslint',
parserOptions: {
sourceType: 'module',
ecmaFeatures: {
jsx: true,
},
},
plugins: ['prettier'],
plugins: ['prettier', 'react'],
rules: {
'prettier/prettier': [
'error',
Expand All @@ -23,7 +26,6 @@ module.exports = {
},
],
'no-console': 0,
indent: ['error', 2],
'linebreak-style': ['error', 'unix'],
quotes: ['error', 'single', { avoidEscape: true }],
semi: ['error', 'always'],
Expand Down
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.dist.html linguist-vendored
*.dist.js linguist-vendored
81 changes: 0 additions & 81 deletions async-context-ui/index.js

This file was deleted.

Loading

0 comments on commit 1d47910

Please sign in to comment.