Skip to content

Commit b04f538

Browse files
committed
build: 3.0.1
1 parent c1d7f48 commit b04f538

File tree

5 files changed

+3047
-13
lines changed

5 files changed

+3047
-13
lines changed

.eslintrc.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,16 @@
1818
"indent": ["error", 2, { "SwitchCase": 1 }],
1919
"default-case": "error",
2020
"linebreak-style": ["error", "unix"],
21-
"semi": ["error", "always"]
21+
"semi": ["error", "always"],
22+
"no-console": "error",
23+
"no-undef": "error",
24+
"no-var": "error",
25+
"no-caller": "error",
26+
"no-throw-literal": "error",
27+
"no-unneeded-ternary": "error",
28+
"prefer-const": "error",
29+
"comma-spacing": ["error", { "before": false, "after": true }],
30+
"comma-style": ["error", "last"],
31+
"handle-callback-err": ["error", "^(err|error)$"]
2232
}
2333
}

.prettierignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
node_modules
2-
.all-contributorsrc
32
.eslintignore
43
.gitignore
54
.prettierignore
6-
.DS_Store
5+
.npmignore
76
LICENSE
87
*.png
98
*.txt
109
TODO
11-
*.md
10+
.DS_Store

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@
77

88
[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Dependency Status][david-badge]][david-badge-url]
99
<a href="#badge">
10-
<img alt="code style: prettier" src="https://img.shields.io/badge/code_style-prettier-ff69b4.svg">
10+
<img alt="code style: prettier" src="https://img.shields.io/badge/code_style-prettier-ff69b4.svg">
1111
</a>
1212

13-
1413
# Twilio SMS notifier for [Runnerty]:
14+
1515
For use with [twilio] SMS services. More info: [twilio on NPM]
16+
1617
### Installation:
18+
1719
Through NPM
1820

1921
```bash
@@ -35,6 +37,7 @@ rty add @runnerty/notifier-twilio
3537
```
3638

3739
### Configuration sample:
40+
3841
Add it in the notification section of the [config.json] file. More information [here](https://docs.runnerty.io/notifiers):
3942

4043
```json
@@ -48,7 +51,9 @@ Add it in the notification section of the [config.json] file. More information [
4851
```
4952

5053
### Plan sample:
54+
5155
Add add it to any [chain](https://docs.runnerty.io/chain) or [process](https://docs.runnerty.io/process) notification event. More information [here](https://docs.runnerty.io/notifiers):
56+
5257
```json
5358
{
5459
"id": "twilio_default",
@@ -57,7 +62,7 @@ Add add it to any [chain](https://docs.runnerty.io/chain) or [process](https://d
5762
}
5863
```
5964

60-
[Runnerty]: https://www.runnerty.io
65+
[runnerty]: https://www.runnerty.io
6166
[downloads-image]: https://img.shields.io/npm/dm/@runnerty/notifier-twilio.svg
6267
[npm-url]: https://www.npmjs.com/package/@runnerty/notifier-twilio
6368
[npm-image]: https://img.shields.io/npm/v/@runnerty/notifier-twilio.svg
@@ -68,4 +73,4 @@ Add add it to any [chain](https://docs.runnerty.io/chain) or [process](https://d
6873
[plan.json]: https://docs.runnerty.io/plan/
6974
[runnerty-cli]: https://www.npmjs.com/package/runnerty-cli
7075
[twilio]: http://www.twilio.com
71-
[twilio on NPM]: https://www.npmjs.com/package/twilio
76+
[twilio on npm]: https://www.npmjs.com/package/twilio

0 commit comments

Comments
 (0)