Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: eslint-config-eyeo/index.js

Issue 29423586: Noissue - Support ECMAScript 2017 syntax, including async functions (Closed) Base URL: https://hg.adblockplus.org/codingtools/
Patch Set: Created April 27, 2017, 12:05 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: eslint-config-eyeo/index.js
===================================================================
--- a/eslint-config-eyeo/index.js
+++ b/eslint-config-eyeo/index.js
@@ -16,16 +16,19 @@
*/
/* eslint-env commonjs */
"use strict";
module.exports = {
extends: "eslint:recommended",
+ parserOptions: {
+ ecmaVersion: 2017
+ },
env: {
es6: true
},
rules: {
"array-bracket-spacing": "error",
"arrow-spacing": "error",
"block-scoped-var": "error",
"block-spacing": "error",
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld