card-info
Version:
Get bank logo, colors, brand and etc. by card number
23 lines • 448 B
JSON
{
"extends": "standard",
"plugins": [
"standard",
"promise",
"import"
],
"rules": {
"comma-dangle": ["error", {
"arrays": "never",
"objects": "never",
"imports": "never",
"exports": "never",
"functions": "never"
}],
"no-console": ["error", {
"allow": ["warn", "error", "info"]
}],
"import/no-extraneous-dependencies": ["error", {
"devDependencies": true
}]
}
}