Last active
April 15, 2023 15:08
-
-
Save coryhouse/61f866c7174220777899bcfff03dab7f to your computer and use it in GitHub Desktop.
.eslintrc.json file for "Building a JavaScript Development" Pluralsight course
This file contains 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
{ | |
"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 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
).
Awesome tutorial. Thanks alot @coryhouse
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @Veretax - Looks like it's resolved. I can't reproduce: https://www.dropbox.com/s/30u0ivggtiqponh/Screenshot%202018-06-28%2013.01.02.png?dl=0