Skip to content

Commit f5e744c

Browse files
author
Charlike Mike Reagent
committed
fix styling, dotfiles
1 parent a2ad9c7 commit f5e744c

File tree

6 files changed

+51
-57
lines changed

6 files changed

+51
-57
lines changed

.editorconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ end_of_line = lf
1313
insert_final_newline = false
1414
trim_trailing_whitespace = false
1515

16-
[*.{json,cson,yml,yaml,md}]
16+
[*.{json,cson,yml,yaml,md,jade,css,stylus}]
1717
indent_size = 2
1818

1919
[*.{js,php}]
2020
indent_size = 2
2121
insert_final_newline = true
2222
trim_trailing_whitespace = true
2323

24-
[*.{php,html,jade,css,stylus}]
24+
[*.{php,html}]
2525
indent_size = 4
2626

2727
[Makefile]

Makefile

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

history.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
## v1.0.0 / December 21, 2014
2+
- release, fix readme styles
3+
14
## v0.1.0 / December 15, 2014
25
- init commits

license.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014 [Charlike Make Reagent][contrib-more], [contributors][contrib-graf].
1+
Copyright (c) 2014 [Charlike Make Reagent](http://j.mp/1stW47C), contributors
22

33
Permission is hereby granted, free of charge, to any person
44
obtaining a copy of this software and associated documentation
@@ -19,8 +19,4 @@ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
1919
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
2020
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
2121
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22-
OTHER DEALINGS IN THE SOFTWARE.
23-
24-
25-
[contrib-more]: http://j.mp/1stW47C
26-
[contrib-graf]: https://github.com/regexps/mentions-regex/graphs/contributors
22+
OTHER DEALINGS IN THE SOFTWARE.

package.json

Lines changed: 20 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,38 @@
11
{
22
"name": "mentions-regex",
3-
"description": "The correct mention(s) regex. Regex done right!",
43
"version": "0.1.0",
4+
"description": "The correct mention(s) regex. Regular expression for twitter, facebook, github, etc user mentions",
55
"scripts": {
6-
"test": "npm install && node_modules/.bin/mocha --require should"
6+
"lint": "jshint . && jscs . --reporter inline",
7+
"test": "mocha -r should"
78
},
89
"author": {
910
"name": "Charlike Make Reagent",
1011
"email": "[email protected]",
1112
"url": "https://github.com/tunnckoCore"
1213
},
14+
"repository": {
15+
"type": "git",
16+
"url": "git://github.com/regexps/mentions-regex.git"
17+
},
1318
"keywords": [
19+
"correct",
20+
"etc",
21+
"expression",
22+
"facebook",
23+
"github",
24+
"google",
25+
"mention",
26+
"mentions",
1427
"regex",
1528
"regexp",
1629
"regexps",
17-
"mentions",
18-
"mention",
30+
"regular",
31+
"regular expression",
32+
"regular expressions",
1933
"twitter",
20-
"github",
21-
"facebook",
22-
"google"
34+
"user"
2335
],
24-
"repository": {
25-
"type": "git",
26-
"url": "git://github.com/regexps/mentions-regex.git"
27-
},
2836
"license": {
2937
"type": "MIT",
3038
"url": "https://github.com/regexps/mentions-regex/blob/master/license.md"
@@ -33,9 +41,5 @@
3341
"devDependencies": {
3442
"mocha": "^2.0.1",
3543
"should": "^4.4.1"
36-
},
37-
"engines": {
38-
"node": ">= 0.10.33",
39-
"npm": ">= 1.4.28"
4044
}
41-
}
45+
}

readme.md

Lines changed: 24 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
[![NPM version][npmjs-img]][npmjs-url] [![MIT license][license-img]][license-url] [![Build Status][travis-img]][travis-url] [![regexps org][regexps-img]][regexps-url]
2-
> The correct mention(s) regex. Regex done right!
1+
[![npm version][npmjs-img]][npmjs-url]
2+
[![mit license][license-img]][license-url]
3+
[![build status][travis-img]][travis-url]
4+
[![deps status][daviddm-img]][daviddm-url]
5+
[![regexps org][regexps-img]][regexps-url]
36

7+
> The correct mention(s) regex. Regular expression for twitter, facebook, github, etc user mentions
48
5-
## Install [![Nodei.co stats][npmjs-ico]][npmjs-url]
6-
> Install with [npm](https://npmjs.org)
7-
8-
```
9+
## Install
10+
```bash
911
$ npm install mentions-regex
1012
$ npm test
1113
```
@@ -73,11 +75,11 @@ str.match(mentionsRegex({flags: 'g', dot: true, startSpace: false, endSpace: fal
7375
```
7476

7577

76-
## Authors & Contributors
77-
**Charlike Mike Reagent** [![author tips][author-gittip-img]][author-gittip]
78-
+ [gittip/tunnckoCore][author-gittip]
79-
+ [github/tunnckoCore][author-github]
78+
## Author
79+
**Charlike Mike Reagent**
80+
+ [gratipay/tunnckoCore][author-gratipay]
8081
+ [twitter/tunnckoCore][author-twitter]
82+
+ [github/tunnckoCore][author-github]
8183
+ [npmjs/tunnckoCore][author-npmjs]
8284
+ [more ...][contrib-more]
8385

@@ -89,7 +91,6 @@ Released under the [`MIT`][license-url] license.
8991

9092
[npmjs-url]: http://npm.im/mentions-regex
9193
[npmjs-img]: https://img.shields.io/npm/v/mentions-regex.svg?style=flat&label=mentions-regex
92-
[npmjs-ico]: https://nodei.co/npm/mentions-regex.svg?mini=true
9394

9495
[coveralls-url]: https://coveralls.io/r/regexps/mentions-regex?branch=master
9596
[coveralls-img]: https://img.shields.io/coveralls/regexps/mentions-regex.svg?style=flat
@@ -100,17 +101,23 @@ Released under the [`MIT`][license-url] license.
100101
[travis-url]: https://travis-ci.org/regexps/mentions-regex
101102
[travis-img]: https://img.shields.io/travis/regexps/mentions-regex.svg?style=flat
102103

103-
[depstat-url]: https://david-dm.org/regexps/mentions-regex
104-
[depstat-img]: https://img.shields.io/david/regexps/mentions-regex.svg?style=flat
104+
[daviddm-url]: https://david-dm.org/regexps/mentions-regex
105+
[daviddm-img]: https://img.shields.io/david/dev/regexps/mentions-regex.svg?style=flat
105106

106-
[author-gittip-img]: http://img.shields.io/gittip/tunnckoCore.svg
107-
[author-gittip]: https://www.gittip.com/tunnckoCore
108-
[author-github]: https://github.com/tunnckoCore
107+
[author-gratipay]: https://gratipay.com/tunnckoCore
109108
[author-twitter]: https://twitter.com/tunnckoCore
109+
[author-github]: https://github.com/tunnckoCore
110110
[author-npmjs]: https://npmjs.org/~tunnckocore
111111

112112
[contrib-more]: http://j.mp/1stW47C
113113
[contrib-graf]: https://github.com/regexps/mentions-regex/graphs/contributors
114114

115115
[regexps-url]: https://github.com/regexps
116-
[regexps-img]: http://img.shields.io/badge/regexps-approved-brightgreen.svg?style=flat
116+
[regexps-img]: http://img.shields.io/badge/regexps-approved-brightgreen.svg?style=flat
117+
118+
***
119+
120+
_Powered and automated by [readdirp + hogan.js](https://github.com/tunnckoCore), December 21, 2014_
121+
122+
123+

0 commit comments

Comments
 (0)