From 5e08addf2c2c5928f1c802a9b9c3e75aff80258c Mon Sep 17 00:00:00 2001 From: Rodrigo Nascimento Date: Wed, 29 Nov 2017 09:26:37 -0200 Subject: [PATCH] Use a standard ESLint file name --- .eslintrc => .eslintrc.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename .eslintrc => .eslintrc.js (99%) diff --git a/.eslintrc b/.eslintrc.js similarity index 99% rename from .eslintrc rename to .eslintrc.js index a55acafff..f7cb61726 100644 --- a/.eslintrc +++ b/.eslintrc.js @@ -1,4 +1,4 @@ -{ +module.exports = { "parser": "babel-eslint", "extends": "airbnb", "parserOptions": { @@ -120,4 +120,4 @@ "globals": { "__DEV__": true } -} +};