UNPKG

@vercel/style-guide

Version:

Vercel's engineering style guide

17 lines (16 loc) 500 B
module.exports = { rules: { /** * Disallow duplicate setup and teardown hooks. * * 🚫 Not fixable - https://github.com/jest-community/eslint-plugin-jest/blob/main/docs/rules/no-duplicate-hooks.md */ 'jest/no-duplicate-hooks': 'error', /** * Require lowercase test names. * * 🔧 Fixable - https://github.com/jest-community/eslint-plugin-jest/blob/main/docs/rules/prefer-lowercase-title.md */ 'jest/prefer-lowercase-title': 'warn', }, };