Saurav Sharmaselftaughtdev.hashnode.dev·Dec 26, 2022Never Worry About Inconsistent Coding Styles Again: Introducing .editorconfig ✨The .editorconfig file is a simple configuration file that helps developers define and maintain consistent coding styles between different editors and IDEs. It is a plain text file that can be placed in the root directory of a project, and specifies ...16 likes·119 readsPython
Bhalala Mihirmihir4116.hashnode.dev·Oct 15, 2022Some Of The Common ESLint Errors and their solutionsuse object destructuring solution: Destructure the Object problem : const action = this.state.action; solution: const {action} = this.state; import A should occur before import of B or function A should be placed after function B solution: simp...50 readseslint