UNPKG

416 BJavaScriptView Raw
1// @flow
2module.exports = {
3 plugins: ['jest'],
4 rules: {
5 'jest/no-disabled-tests': 1,
6 'jest/no-focused-tests': 2,
7 'jest/no-identical-title': 2,
8 'jest/valid-expect': 2,
9 'jest/prefer-to-have-length': 2,
10 'jest/prefer-to-be-undefined': 0,
11 'jest/prefer-to-be-null': 0,
12 'jest/no-large-snapshots': 0,
13 'jest/prefer-expect-assertions': 0,
14 },
15 env: {
16 'jest/globals': true,
17 },
18}