Skip to content

Instantly share code, notes, and snippets.

@coryhouse
Last active April 15, 2023 15:08
Show Gist options
  • Star 19 You must be signed in to star a gist
  • Fork 19 You must be signed in to fork a gist
  • Save coryhouse/61f866c7174220777899bcfff03dab7f to your computer and use it in GitHub Desktop.
Save coryhouse/61f866c7174220777899bcfff03dab7f to your computer and use it in GitHub Desktop.
.eslintrc.json file for "Building a JavaScript Development" Pluralsight course
{
"root": true,
"extends": [
"eslint:recommended",
"plugin:import/errors",
"plugin:import/warnings"
],
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module"
},
"env": {
"browser": true,
"node": true,
"mocha": true
},
"rules": {
}
}
@Veretax
Copy link

Veretax commented Jun 24, 2018

Just a heads up, seems to be a bug in git hub now when trying to copy the raw, the quotes around the JSON keys disappears. THe workaround seems to be to copy it from inside that text area directly from here.

@coryhouse
Copy link
Author

@brunotag
Copy link

brunotag commented Sep 2, 2018

@Veretax on my machine it happens because of a plugin for Chrome that I forgot I installed. What I mean is: it could be how your browser decides to render a file ending with the .json extension (despite the fact that the content is text/plain).

@thehcker
Copy link

Awesome tutorial. Thanks alot @coryhouse

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