Skip to content

Commit

Permalink
Incorporate feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
kaicataldo committed Nov 22, 2019
1 parent 74e2c2c commit ca88cf1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions eslint/babel-eslint-config-internal/index.js
Expand Up @@ -5,9 +5,19 @@ module.exports = {
extends: "eslint:recommended",
plugins: ["flowtype"],
parserOptions: {
ecmaVersion: 2019,
ecmaVersion: 2020,
sourceType: "module",
},
globals: {
// Flow
Iterator: true,
$Keys: true,
},
env: {
node: true,
es2020: true,
browser: true,
},
rules: {
camelcase: "off",
"consistent-return": "off",
Expand Down Expand Up @@ -36,14 +46,4 @@ module.exports = {
"flowtype/define-flow-type": "warn",
"flowtype/use-flow-type": "warn",
},
globals: {
// Flow
Iterator: true,
$Keys: true,
},
env: {
node: true,
es6: true,
browser: true,
},
};
2 changes: 1 addition & 1 deletion eslint/babel-eslint-config-internal/package.json
@@ -1,6 +1,6 @@
{
"name": "@babel/eslint-config-internal",
"version": "7.7.0",
"version": "0.0.0",
"description": "The Babel Team's ESLint configuration. Since it's internal, it might not respect semver.",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
Expand Down

0 comments on commit ca88cf1

Please sign in to comment.