From a1194a81713d09d6da227f3926ed224cd7dde64d Mon Sep 17 00:00:00 2001 From: Ben Woosley Date: Sat, 13 Jan 2018 00:01:13 +0000 Subject: [PATCH] enhance(eslint-a11y): Enable the strict jsx-a11y We're currently passing these, apart from those explicitly disabled. https://www.npmjs.com/package/eslint-plugin-jsx-a11y#difference-between-recommended-and-strict-mode --- .eslintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc b/.eslintrc index d3ed4851..e155b83b 100644 --- a/.eslintrc +++ b/.eslintrc @@ -9,7 +9,8 @@ "plugin:react/recommended", "plugin:flowtype/recommended", "plugin:import/errors", - "plugin:import/warnings" + "plugin:import/warnings", + "plugin:jsx-a11y/strict" ], "env": { "browser": true,