UNPKG

eslint-config-auth0-base

Version:

Auth0's base JS ESLint config, following our styleguide

7 lines (6 loc) 165 B
module.exports = { rules: { // disallow dangling underscores in identifiers, but allow `_id`. 'no-underscore-dangle': ['error', { allow: ['_id'] }] } };