Skip to content

Commit f72062e

Browse files
committed
chore(eslint): Relaxing max-len stylistic rule
1 parent 4fd93b6 commit f72062e

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

packages/eslint/base.eslintrc.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ module.exports = {
6767
'no-continue': 'off',
6868
'lines-between-class-members': 'off',
6969
'arrow-body-style': 'off',
70+
'no-new': 'off',
7071
'import/extensions': [
7172
'error',
7273
'ignorePackages',

packages/eslint/storefront.eslintrc.cjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ module.exports = {
1313
'array-bracket-spacing': 'warn',
1414
'no-restricted-syntax': 'warn',
1515
'no-plusplus': 'warn',
16+
'max-len': ['warn', { 'code': 120 }],
1617
'quote-props': 'off',
1718
'quotes': 'off',
1819
'global-require': 'off',

0 commit comments

Comments
 (0)