Skip to content

Commit b100ccc

Browse files
committed
change no restricted imports eslint rule to error
1 parent 45e1d67 commit b100ccc

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
@@ -101,7 +101,7 @@ export default [
101101
'no-new-wrappers': 'error',
102102
'no-prototype-builtins': 'off',
103103
'no-restricted-imports': [
104-
'warn',
104+
'error',
105105
{
106106
paths: [
107107
{

0 commit comments

Comments
 (0)