Skip to content

Commit

Permalink
First attempt to datetime under Android (#410)
Browse files Browse the repository at this point in the history
Solved format condition issue

Added option to format date and time values

Tests passing

First attempt to datetime under Android

Solved format condition issue

Added option to format date and time values

Tests passing

Configured prettier
  • Loading branch information
alvaromb authored Oct 17, 2017
1 parent dd314af commit 2397f67
Show file tree
Hide file tree
Showing 7 changed files with 5,854 additions and 200 deletions.
15 changes: 9 additions & 6 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
{
"extends": ["prettier", "prettier/react", "prettier/standard"],
"env": {
"browser": true,
"node": true,
"es6": true
},
"plugins": [
"react"
],
"ecmaFeatures": {
"modules": true,
"jsx": true
"plugins": ["react", "prettier"],
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": {
"modules": true,
"jsx": true
}
},
"rules": {
"prettier/prettier": 1,
"eol-last": 0,
"no-underscore-dangle": 0,
"no-undef": 0,
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- "0.12"
- "5.0.0"
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
Loading

0 comments on commit 2397f67

Please sign in to comment.