webstorm-tips Posted on 2024-03-10 Edited on 2025-04-07 In tools , webstorm Symbols count in article: 36 Reading time ≈ 1 mins. webstorm-tipsConflict between prettier and eslint[ESlint] delete cr (prettier/prettier)Resolution: put the following config in your .eslintrc.js under project root. 123456789rules: { ... 'prettier/prettier': [ 'error', { 'endOfLine': 'auto' // This line will remove the warning } ]},