Skip to content

Commit

Permalink
Use JSON for consitency
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianbw committed Jul 4, 2019
1 parent 73c9ec2 commit 8944662
Showing 1 changed file with 13 additions and 14 deletions.
27 changes: 13 additions & 14 deletions .eslintrc.js → .eslintrc
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
module.exports = {
root: true,
env: {
browser: true,
node: true
{
"root": true,
"env": {
"es6": true,
"browser": true,
"node": true
},
parserOptions: {
parser: "babel-eslint",
ecmaVersion: 2017
"parserOptions": {
"parser": "babel-eslint",
"ecmaVersion": 2017,
"sourceType": "module"
},
env: {
es6: true
},
extends: [
"extends": [
"plugin:prettier/recommended",
"prettier",
],
plugins: [
"plugins": [
"prettier"
],
// add your custom rules here
rules: {
"rules": {
"quotes": [
"warn",
"double",
Expand Down

0 comments on commit 8944662

Please sign in to comment.