Skip to content

Instantly share code, notes, and snippets.

@Debajyati
Created April 22, 2024 13:55
Show Gist options
  • Save Debajyati/3070a00045991e2b9b3254245253565f to your computer and use it in GitHub Desktop.
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
{
"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