Skip to content

Commit

Permalink
fix unicorn lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mvorisek committed Jan 28, 2025
1 parent 6274774 commit e40a2bf
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions js/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,14 @@ module.exports = {
},
}],
'unicorn/catch-error-name': 'off',
'unicorn/filename-case': ['error', {
cases: {
camelCase: true,
kebabCase: false,
pascalCase: true,
snakeCase: false,
}
}],
'unicorn/no-array-callback-reference': 'off',
'unicorn/no-lonely-if': 'off',
'unicorn/no-negated-condition': 'off',
Expand Down

0 comments on commit e40a2bf

Please sign in to comment.