Skip to content

Commit 630b68e

Browse files
committed
Merge branch 'no-context'
2 parents 43fa7dc + 754bfcd commit 630b68e

File tree

117 files changed

+10522
-197376
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

117 files changed

+10522
-197376
lines changed

.eslintrc

Lines changed: 0 additions & 2 deletions
This file was deleted.

.eslintrc.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
parser: babel-eslint
2+
extends: jason/react
3+
globals:
4+
Promise: true
5+
rules:
6+
no-unused-vars:
7+
- off
8+
- vars: all
9+
args: after-used
10+
varsIgnorePattern: ^_
11+
argsIgnorePattern: ^_

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/lib
22
/es
3+
/www/cache
4+
/www/public
35

46
# Logs
57
logs

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var yup = require('yup')
2626
var modelSchema = yup.object({
2727
name: yup.object({
2828
first: yup.string().required('Name is required'),
29-
last: yup.string().required('Name is required')
29+
last: yup.string().required('Name is required')
3030
}),
3131
dateOfBirth: yup.date()
3232
.max(new Date(), 'You can be born in the future!')
@@ -52,7 +52,7 @@ render() {
5252
<Form.Field name='dateOfBirth'/>
5353
<Form.Message for='dateOfBirth'/>
5454
</fieldset>
55-
<Form.Button type='submit'>Submit</Form.Button>
55+
<Form.Submit type='submit'>Submit</Form.Submit>
5656
</Form>
5757
)
5858
}

docs/app.js

Lines changed: 0 additions & 221 deletions
This file was deleted.

0 commit comments

Comments
 (0)