Skip to content

Commit

Permalink
Housekeeping
Browse files Browse the repository at this point in the history
  • Loading branch information
ankurk91 committed Sep 2, 2018
1 parent 5d3bcbf commit e32505b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 26 deletions.
4 changes: 0 additions & 4 deletions .editorconfig
@@ -1,13 +1,9 @@
# http://editorconfig.org/


# Top-most EditorConfig file
root = true


[*]

# Change these settings to your own preference
indent_style = space
indent_size = 4

Expand Down
4 changes: 0 additions & 4 deletions .gitattributes
@@ -1,6 +1,4 @@
# https://git-scm.com/book/en/Customizing-Git-Git-Attributes
# https://help.github.com/articles/dealing-with-line-endings


# Auto detect text files and perform LF normalization
* text=auto
Expand Down Expand Up @@ -33,5 +31,3 @@ tests export-ignore
__test__ export-ignore
.github export-ignore

# https://github.com/github/linguist#using-gitattributes
node_modules/ linguist-vendored=false
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Expand Up @@ -19,5 +19,5 @@
* Install dependencies : `yarn install`
* Make changes in ``src`` folder
* Write/update test case for the feature/fix you made
* You can check if everything is working fine by running tests `yarn test`
* You can check if everything is working fine by running `yarn test`

16 changes: 2 additions & 14 deletions .gitignore
@@ -1,11 +1,7 @@
# https://github.com/github/gitignore
# http://git-scm.com/docs/gitignore

# phpstorm, webstorm
.idea/


# sublime and other ide
# different IDEs
.idea
.project
*.sublime-*
.brackets.json
Expand All @@ -29,7 +25,6 @@ ehthumbs.db
*.save
*.swp


# Recycle bin folder used by different os
.Trash-*
$RECYCLE.BIN/
Expand All @@ -42,15 +37,9 @@ $RECYCLE.BIN/
*.DS_Store
.DS_Store?


# node packages
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
node_modules/


# bower packages
bower_components/

# Composer, exclude on root vendor folder
/vendor/
composer.phar
Expand All @@ -67,4 +56,3 @@ composer.phar
/docs/
/tmp/
/coverage/

10 changes: 7 additions & 3 deletions examples/index.js
@@ -1,11 +1,15 @@
'use strict';

import Vue from 'vue';

Vue.config.productionTip = false;

// vee-validate is just for demo
import VeeValidate from 'vee-validate';
Vue.use(VeeValidate);

Vue.use(VeeValidate, {
events: 'input|blur'
});

// jQuery is required by bootstrap to work
window.$ = window.jQuery = require('jquery');
Expand All @@ -17,10 +21,10 @@ import App from './App.vue';
new Vue({
el: '#app',
render: h => h(App),
created(){
created() {
console.log('Main app created');
},
mounted(){
mounted() {
console.log('Main app mounted');
},
});

0 comments on commit e32505b

Please sign in to comment.