Skip to content

Commit ab4fcb7

Browse files
committed
change no restricted imports eslint rule to error
1 parent 0c78082 commit ab4fcb7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

eslint.config-md.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default [
3232
'react/no-unknown-property': 'error',
3333
'react/jsx-no-undef': 'error',
3434
'no-restricted-imports': [
35-
'warn',
35+
'error',
3636
{
3737
paths: [
3838
{

eslint.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export default [
100100
'no-new-wrappers': 'error',
101101
'no-prototype-builtins': 'off',
102102
'no-restricted-imports': [
103-
'warn',
103+
'error',
104104
{
105105
paths: [
106106
{

0 commit comments

Comments
 (0)