Skip to content

Instantly share code, notes, and snippets.

@MidnightLightning
Created March 14, 2017 18:39
Show Gist options
  • Save MidnightLightning/38ae806cea92d06296dfd2c6c62b8e5d to your computer and use it in GitHub Desktop.
Save MidnightLightning/38ae806cea92d06296dfd2c6c62b8e5d to your computer and use it in GitHub Desktop.
ESLint Atom issue
function hello () {
console.log("Hello World!");
}
hello()
{
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"browser": true
},
"rules": {
"semi": 1
}
},
"devDependencies": {
"eslint": "^3.17.1"
}
}
@IanVS
Copy link

IanVS commented Apr 6, 2017

I downloaded this zip, installed the dependencies, opened the file in Atom, and got an error/warning as expected. I have to think there's something else going on in your environment or settings that is the culprit here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment