Skip to content

Commit

Permalink
update eslint rules
Browse files Browse the repository at this point in the history
Signed-off-by: Arturo Manzoli <[email protected]>
  • Loading branch information
ArturoManzoli committed Aug 10, 2024
1 parent 1177534 commit 07e404c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ module.exports = {
'jsdoc/newline-after-description': 'off',
'jsdoc/no-undefined-types': 'off',
'jsdoc/require-returns': ['error', { forceReturnsWithAsync: false }],
'max-len': ['error', { code: 120, ignoreUrls: true, ignoreComments: true }],
'max-len': ['error', { code: 180, ignoreUrls: true, ignoreComments: true }],
'no-alert': 'off',
'no-console': 'off',
'no-continue': 'off',
Expand Down Expand Up @@ -92,10 +92,10 @@ module.exports = {
'vue/max-len': [
'error',
{
code: 120,
template: 120,
code: 180,
template: 180,
tabWidth: 4,
comments: 160,
comments: 180,
ignoreComments: true,
ignoreTrailingComments: true,
ignoreHTMLAttributeValues: true,
Expand Down

0 comments on commit 07e404c

Please sign in to comment.