mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-04-06 01:25:31 +00:00
Fix lint
This commit is contained in:
parent
9e2baf25d2
commit
7146e0a9b2
@ -1,10 +1,11 @@
|
|||||||
import { normalizeEmail } from 'validator'
|
import { normalizeEmail } from 'validator'
|
||||||
|
|
||||||
export default (email) => normalizeEmail(email, {
|
export default email =>
|
||||||
gmail_remove_dots: false,
|
normalizeEmail(email, {
|
||||||
gmail_remove_subaddress: false,
|
gmail_remove_dots: false,
|
||||||
// gmail_convert_googlemaildotcom: true, default
|
gmail_remove_subaddress: false,
|
||||||
outlookdotcom_remove_subaddress: false,
|
// gmail_convert_googlemaildotcom: true, default
|
||||||
yahoo_remove_subaddress: false,
|
outlookdotcom_remove_subaddress: false,
|
||||||
icloud_remove_subaddress: false,
|
yahoo_remove_subaddress: false,
|
||||||
})
|
icloud_remove_subaddress: false,
|
||||||
|
})
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
import { normalizeEmail } from 'validator'
|
import { normalizeEmail } from 'validator'
|
||||||
|
|
||||||
export default (email) => normalizeEmail(email, {
|
export default email =>
|
||||||
gmail_remove_dots: false,
|
normalizeEmail(email, {
|
||||||
gmail_remove_subaddress: false,
|
gmail_remove_dots: false,
|
||||||
// gmail_convert_googlemaildotcom: true, default
|
gmail_remove_subaddress: false,
|
||||||
outlookdotcom_remove_subaddress: false,
|
// gmail_convert_googlemaildotcom: true, default
|
||||||
yahoo_remove_subaddress: false,
|
outlookdotcom_remove_subaddress: false,
|
||||||
icloud_remove_subaddress: false,
|
yahoo_remove_subaddress: false,
|
||||||
})
|
icloud_remove_subaddress: false,
|
||||||
|
})
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user