Skip to content

Commit

Permalink
⬆️ 1.0.1 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
IonicaBizau committed Apr 25, 2016
1 parent bd0a8fd commit 91621aa
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 9 deletions.
4 changes: 3 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ Contributions are more than welcome!

Thanks! :sweat_smile:



[1]: https://github.com/IonicaBizau/code-style/issues

[2]: https://github.com/IonicaBizau/code-style
[2]: https://github.com/IonicaBizau/code-style
13 changes: 9 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@

# :book: Ionică Bizău's Code Style :heart: [![PayPal](https://img.shields.io/badge/%24-paypal-f39c12.svg)][paypal-donations] [![Version](https://img.shields.io/npm/v/ionicabizau-code-style.svg)](https://www.npmjs.com/package/ionicabizau-code-style) [![Downloads](https://img.shields.io/npm/dt/ionicabizau-code-style.svg)](https://www.npmjs.com/package/ionicabizau-code-style) [![Get help on Codementor](https://cdn.codementor.io/badges/get_help_github.svg)](https://www.codementor.io/johnnyb?utm_source=github&utm_medium=button&utm_term=johnnyb&utm_campaign=github)


This document contains guides that *I* defined and follow when building things.

[Open issues](/code-style/issues) with any questions, ideas, fixes etc. :innocent:

# Contents

- [Variable declarations](#variable-declarations-pencil)

- [Variables](#variables-speech_balloon)
- [Constants](#constants-triangular_flag_on_post)
- [Globals](#globals-earth_africa)

- [Semicolons](#semicolons-pencil2)
- [Method and property definitions](#method-and-property-definitions-paperclip)
- [Deleting properties](#deleting-properties-x)
Expand Down Expand Up @@ -118,6 +120,7 @@ delete foo.bar;

`eval` is evil. :rage: Do not use it. However I use it in some test files and in places where I have to execute the JavaScript code provided by the user.


For converting strings to JSON, use `JSON.parse(strObj)`.

## Iterating objects and arrays
Expand Down Expand Up @@ -356,10 +359,12 @@ I use [`name-it`](https://github.com/IonicaBizau/name-it) to generate project na

I :sparkling_heart: open-source! I prefer the MIT license.

## How to contribute

## :yum: How to contribute
Have an idea? Found a bug? See [how to contribute][contributing].

## License

## :scroll: License

[MIT][license] © [Ionică Bizău][website]

Expand Down
19 changes: 15 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "ionicabizau-code-style",
"version": "1.0.0",
"version": "1.0.1",
"description": "Or how I build things.",
"main": "index.js",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
Expand Down Expand Up @@ -540,5 +540,16 @@
"p": "I :sparkling_heart: open-source! I prefer the MIT license."
}
]
}
}
},
"files": [
"bin/",
"app/",
"lib/",
"dist/",
"src/",
"resources/",
"menu/",
"cli.js",
"index.js"
]
}

0 comments on commit 91621aa

Please sign in to comment.