Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | 1x | 'use strict' /** * Plugin rules for consistent test formatting * * 📝 https://github.com/dangreenisrael/eslint-plugin-jest-formatting */ module.exports = { // Enables all of the rules to require padding between test elements 'jest-formatting/padding-around-all': 'error', // 'jest-formatting/padding-around-after-all-blocks' // 'jest-formatting/padding-around-after-each-blocks' // 'jest-formatting/padding-around-before-all-blocks' // 'jest-formatting/padding-around-before-each-blocks' // 'jest-formatting/padding-around-expect-groups' // 'jest-formatting/padding-around-describe-blocks' // 'jest-formatting/padding-around-test-blocks' } |