Skip to content

Commit f9539d3

Browse files
authored
eslint config change to enforce case sensitive paths in import statements (#277)
1 parent af84863 commit f9539d3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

snprc_ehr/.eslintrc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"ecmaFeatures": {
1111
"jsx": true
1212
}
13-
},
13+
},
1414
"settings": {
1515
"import/resolver": {
1616
"node": {
@@ -40,7 +40,7 @@
4040
],
4141
"import/extensions": 0,
4242
"import/no-extraneous-dependencies": 0,
43-
"import/no-unresolved": 0,
43+
"import/no-unresolved": 2,
4444
"import/prefer-default-export": 0,
4545
"import/no-named-as-default": 0,
4646
"jsx-boolean-value": 0,
@@ -98,7 +98,7 @@
9898
"react/jsx-no-target-blank": "error",
9999
"react/jsx-pascal-case": "error",
100100
"react/jsx-sort-props": "error",
101-
"react/state-in-constructor": "off",
101+
"react/state-in-constructor": "off",
102102
"react/destructuring-assignment": "off",
103103
},
104104
"overrides": [

0 commit comments

Comments
 (0)