Skip to content

Commit 5254487

Browse files
authored
Merge pull request #45 from OrigenStudio/develop
release of v0.1.0-rc.0
2 parents c85cc32 + 1f61e07 commit 5254487

File tree

15 files changed

+462
-157
lines changed

15 files changed

+462
-157
lines changed

.eslintignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
packages/_buffer

.eslintrc

Lines changed: 70 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,78 @@
11
{
22
"extends": [
3-
"airbnb"
3+
"plugin:prettier/recommended",
4+
"airbnb",
5+
"plugin:meteor/recommended",
6+
"plugin:react/recommended"
47
],
58
"parser": "babel-eslint",
9+
"parserOptions": {
10+
"allowImportExportEverywhere": true,
11+
"ecmaVersion": 6,
12+
"sourceType": "module"
13+
},
614
"rules": {
715
"strict": 0,
8-
"react/require-default-props": 0
16+
"import/no-extraneous-dependencies": 0, # to fix meteor/foo imports, it need to be fixed
17+
"import/extensions": 0, # remove it when issue 17 of eslint-import-resolver-meteor solved
18+
"arrow-parens": [2, "as-needed"],
19+
"generator-star-spacing": 0,
20+
"babel/new-cap": [1, {
21+
"capIsNewExceptions": [
22+
"Optional",
23+
"OneOf",
24+
"Maybe",
25+
"MailChimpAPI",
26+
"Juice",
27+
"Run",
28+
"AppComposer",
29+
"Query"
30+
]
31+
}],
32+
"array-bracket-spacing": 0,
33+
"babel/object-curly-spacing": 0,
34+
"object-shorthand": 0,
35+
"babel/no-await-in-loop": 1,
36+
"comma-dangle": 0,
37+
"key-spacing": 0,
38+
"no-extra-boolean-cast": 0,
39+
"no-undef": 1,
40+
"no-unused-vars": [1, {
41+
"vars": "all",
42+
"args": "none",
43+
"varsIgnorePattern": "React|PropTypes|Component"
44+
}],
45+
"no-console": 1,
46+
"react/prop-types": 0,
47+
"meteor/audit-argument-checks": 0,
48+
"no-case-declarations": 0,
49+
"no-underscore-dangle": [2, {"allow":["_id"]}]
50+
},
51+
"env": {
52+
"browser": true,
53+
"commonjs": true,
54+
"es6": true,
55+
"meteor": true,
56+
"node": true
57+
},
58+
"plugins": [
59+
"babel",
60+
"meteor",
61+
"react"
62+
],
63+
"settings": {
64+
"import/resolver": {
65+
"meteor": {
66+
"extensions": [
67+
".js",
68+
".jsx"
69+
]
70+
}
71+
}
72+
},
73+
"root": true,
74+
"globals": {
75+
"param": true,
76+
"returns": true
977
}
1078
}

.prettierrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "es5",
4+
"prettier.eslintIntegration": true
5+
}

README.md

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,27 @@
1-
#WIP
1+
<p align="center">
2+
<img src="https://user-images.githubusercontent.com/6626225/40393625-8a675f3c-5e20-11e8-99b2-db016e8e2db3.png" width="230"/>
3+
</p>
24

3-
#If you see me REMEMBER ME to add tests please
5+
<h1 align="center">Material-UI-Layout</h1>
6+
7+
8+
Say goodbye to spending hours configuring your app's layout.
9+
10+
🎉 Welcome to a declarative way of creating your app's layout! 🎉
11+
12+
This library uses [Material-UI](https://material-ui.com) and the layout is based on [Google's Material Design](http://material.io) guidelines 🤓
13+
14+
## Install
15+
16+
`npm install material-ui-layout`
17+
18+
## Examples
19+
20+
WIP 😅
421

522
## Roadmap
6-
- [] Add tests
23+
- [ ] Add tests
724
- [x] Add better support for two rows AppBars
8-
- [] Example web
25+
- [ ] Example web
926

1027

11-
material-ui-layout

0 commit comments

Comments
 (0)