Created
April 22, 2024 13:55
-
-
Save Debajyati/3070a00045991e2b9b3254245253565f to your computer and use it in GitHub Desktop.
Basic eslint config to make it good to go for development in js/ts inside Neovim
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"extends": ["eslint:recommended"], | |
"parserOptions": { | |
"ecmaVersion": "latest" | |
}, | |
"env": { | |
"es6": true, | |
"browser": true, | |
"node": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment