Skip to content

Commit 48c4a42

Browse files
committed
config(lint): restrict prohibited imports linting (severity: error)
#163
1 parent bca742e commit 48c4a42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ module.exports = {
6363
},
6464
],
6565
// TODO: specify message: ("Please use allowed public API (not private imports!)")
66-
"no-restricted-imports": [1, { patterns: DENIED_PATH_GROUPS }],
66+
"no-restricted-imports": [2, { patterns: DENIED_PATH_GROUPS }],
6767
// variables
6868
"prefer-const": 2,
6969
"no-var": 2,

0 commit comments

Comments
 (0)