Skip to content

Commit

Permalink
fix: ignore regex template literals for line length
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiTenno committed Apr 3, 2022
1 parent 4ae3727 commit 2837b8d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ module.exports = {
comments: 120,
ignoreTemplateLiterals: true,
ignoreStrings: true,
ignoreRegExpLiterals: true,
},
],
'import/no-unresolved': 0,
Expand Down
1 change: 1 addition & 0 deletions esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ module.exports = {
comments: 120,
ignoreTemplateLiterals: true,
ignoreStrings: true,
ignoreRegExpLiterals: true,
},
],
'import/no-unresolved': 0,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "1.1.1",
"description": "Shared eslint configuration for Warframe Community Developers",
"scripts": {
"test": "exit 0",
"test": "npm run lint",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
Expand Down

0 comments on commit 2837b8d

Please sign in to comment.