diff --git a/.eslintrc b/.eslintrc
new file mode 100644
index 00000000..1e642a74
--- /dev/null
+++ b/.eslintrc
@@ -0,0 +1,29 @@
+{
+ "parser": "babel-eslint",
+ "extends": [
+ "standard",
+ "eslint:recommended"
+ ],
+ "plugins": [
+ "babel",
+ "promise"
+ ],
+ "env": {
+ "browser" : true
+ },
+ "globals": {
+ "__DEV__" : false,
+ "__TEST__" : false,
+ "__PROD__" : false,
+ "__COVERAGE__" : false
+ },
+ "rules": {
+ "key-spacing" : 0,
+ "jsx-quotes" : [2, "prefer-single"],
+ "max-len" : [2, 80, 2],
+ "object-curly-spacing" : [2, "always"],
+ "semi" : [2, "never"],
+ "no-mixed-spaces-and-tabs": [2],
+ "arrow-parens" : [2, "always"]
+ }
+}
diff --git a/.gitignore b/.gitignore
index 3080e15d..d29ca697 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,3 +8,4 @@ yarn.lock
*.bak
*.new
*.DS_store
+.esm-cache
diff --git a/examples/chat/index.html b/examples/chat/index.html
index 201b8e82..2724b1af 100644
--- a/examples/chat/index.html
+++ b/examples/chat/index.html
@@ -34,7 +34,7 @@
.poiret {
font-family: 'Poiret One', sans-serif;
}
- .large {
+ .large {
font-size: 200%;
}
#converse .what, #converse .who {
@@ -68,8 +68,19 @@
+