We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 469daf6 commit 3a9c2f1Copy full SHA for 3a9c2f1
.eslintrc.js
@@ -24,7 +24,13 @@ module.exports = {
24
'@typescript-eslint/explicit-module-boundary-types': 'error',
25
'@typescript-eslint/explicit-member-accessibility': 'error',
26
'@typescript-eslint/no-explicit-any': 'off',
27
- 'max-len': ['error', { code: 80 }],
+ 'max-len': [
28
+ 'error',
29
+ {
30
+ code: 80,
31
+ ignoreUrls: true,
32
+ }
33
+ ],
34
'simple-import-sort/imports': 'error',
35
'simple-import-sort/exports': 'error',
36
'import/first': 'error',
0 commit comments