express-gateway-plugin-jwks
Version:
Policy to support JWKS security providers like Auth0
41 lines (40 loc) • 623 B
Plain Text
{
"extends": [
"standard",
"plugin:node/recommended",
"plugin:import/errors",
"plugin:import/warnings"
],
"env": {
"es6": true,
"node": true
},
"plugins": [
"import",
"promise",
"node"
],
"rules": {
"comma-dangle": [
2,
"never"
],
"no-var": "error",
"semi": [
2,
"always"
],
"no-console": "warn",
"prefer-const": "error",
"node/no-deprecated-api": [
"error",
{
"ignoreModuleItems": [
"crypto.createCipher",
"crypto.createDecipher"
]
}
]
},
"root": true
}