Skip to content
This repository was archived by the owner on Mar 29, 2020. It is now read-only.

Commit dfb68df

Browse files
committed
fix(base): disable max-statements rule
1 parent 9484f45 commit dfb68df

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/eslint-config/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,11 @@ module.exports = {
1313
'warn',
1414
{terms: ['todo', 'fixme'], location: 'start'},
1515
],
16-
'implicit-arrow-linebreak': 'off',
16+
'implicit-arrow-linebreak': 'off', // not necessary with prettier
1717
'max-depth': ['error', {max: 4}],
1818
'max-nested-callbacks': ['error', {max: 3}],
1919
'max-params': ['error', {max: 3}],
2020
'max-statements-per-line': ['error', {max: 1}],
21-
'max-statements': ['error', {max: 15}],
2221
'newline-before-return': 'error',
2322
'no-compare-neg-zero': 'error',
2423
'no-implicit-coercion': [

0 commit comments

Comments
 (0)