Skip to content

Commit 3bd224e

Browse files
committed
feat: Initial draft for v0.5.0
1 parent 0469077 commit 3bd224e

File tree

478 files changed

+6485
-25743
lines changed

Some content is hidden

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

478 files changed

+6485
-25743
lines changed

.babelrc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"env": {
3+
"development": {
4+
"presets": ["es2015", "stage-2"],
5+
"comments": false
6+
},
7+
"production": {
8+
"presets": ["es2015-rollup"],
9+
"comments": false
10+
}
11+
}
12+
}

.bithoundrc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"ignore": [
3-
"**/*dependencies*",
4-
"dist/**"
3+
"dist/**",
4+
"test/**",
5+
"dev/**"
56
]
67
}

.eslintrc.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
module.exports = {
2+
root: true,
3+
parserOptions: {
4+
sourceType: 'module'
5+
},
6+
env: {
7+
browser: true
8+
},
9+
// https://github.com/feross/standard/blob/master/RULES.md#javascript-standard-style
10+
extends: 'standard',
11+
// required to lint *.vue files
12+
plugins: [
13+
'html'
14+
],
15+
// add your custom rules here
16+
'rules': {
17+
'arrow-parens': 0,
18+
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0,
19+
'one-var': [2, 'always'],
20+
'brace-style': [2, 'stroustrup', { 'allowSingleLine': true }]
21+
}
22+
}

.eslintrc.json

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

.gitignore

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
/node_modules
2-
/dist
3-
/coverage
4-
/preview/node_modules
5-
preview/coverage
6-
/preview/dist
7-
/preview/wrapper/platforms/*
8-
/preview/wrapper/plugins
1+
.DS_Store
2+
node_modules/
3+
dist/
94
npm-debug.log
5+
test/unit/coverage/
6+
test/e2e/dist/

.stylintrc

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

CHANGELOG.md

Whitespace-only changes.

LICENSE

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015 Razvan Stoenescu
3+
Copyright (c) 2016 Razvan Stoenescu
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -19,4 +19,3 @@ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121
SOFTWARE.
22-

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Head on to the Quasar Framework official website: [http://quasar-framework.org](
2727
## Related Components
2828

2929
* [Quasar Framework CLI](https://github.com/rstoenescu/quasar-cli)
30+
* [Quasar Framework Templates](https://github.com/rstoenescu/quasar-templates)
3031

3132
## Contributing
3233

build/git-hooks/pre-commit

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env bash
2+
3+
npm run lint

0 commit comments

Comments
 (0)