Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Nov 29, 2017
1 parent 1a6dc0b commit fbd00f3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $ npm install free-email-domains --save

```js
const freeEmailDomains = require('free-email-domains')
freeEmailDomains.includes('gmail.com') //=> true
freeEmailDomains.includes('gmail.com') // => true
```

## License
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
"license": "MIT",
"lint-staged": {
"*.js": [
"git add",
"prettier-standard"
"prettier-standard",
"git add"
]
},
"standard": {
Expand Down
8 changes: 4 additions & 4 deletions update.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@

const got = require('got')
const cheerio = require('cheerio')
const {concat} = require('lodash')
const { concat } = require('lodash')
const jsonFuture = require('json-future')

const URL = 'https://knowledge.hubspot.com/articles/kcs_article/forms/what-domains-are-blocked-when-using-the-forms-email-domains-to-block-feature'
const URL =
'https://knowledge.hubspot.com/articles/kcs_article/forms/what-domains-are-blocked-when-using-the-forms-email-domains-to-block-feature'

const REGEX_SEPARATOR = new RegExp('<br>', 'g')

;(async () => {
const {body} = await got(URL)
const { body } = await got(URL)

const $ = cheerio.load(body)
let result = []
Expand Down

0 comments on commit fbd00f3

Please sign in to comment.