Skip to content

Commit

Permalink
Improve ESLint configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
kibertoad committed Sep 1, 2019
1 parent ad2b113 commit acfe839
Showing 1 changed file with 3 additions and 19 deletions.
22 changes: 3 additions & 19 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,14 @@
"node": true,
"mocha": true
},
"globals": {
"jake": "readable",
"task": "readable",
"namespace": "readable",
"desc": "readable",
"complete": "readable",
"file": "readable",
"directory": "readable",
"fail": "readable"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
"ecmaVersion": 5,
"sourceType": "script"
},
"extends": "eslint:recommended",
"rules": {
"no-console": "off",
"no-empty": "off",
"no-unused-vars": "off",
"no-useless-escape": "off",
"space-before-function-paren": ["error", {
"anonymous": "always",
"named": "never",
"asyncArrow": "always"
}]
"no-useless-escape": "off"
}
}

0 comments on commit acfe839

Please sign in to comment.