From a2d420be48bb6c9606239c97b5521e61c31aa24f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Victor=20Tozatti=20Risso?= <jvtr12@inf.ufpr.br> Date: Tue, 22 Nov 2016 11:44:49 -0200 Subject: [PATCH] Disable rules defined by AirBnB ESLint module MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Disable jsx-a11y rules that are defined by AirBnB ESLint module Signed-off-by: João Victor Tozatti Risso <jvtr12@inf.ufpr.br> --- .eslintrc.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.eslintrc.json b/.eslintrc.json index 14152dfc..bac0de40 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -7,6 +7,8 @@ "import" ], "rules": { + "jsx-a11y/heading-has-content": [ "off" ], + "jsx-a11y/anchor-has-content": [ "off" ], "indent": [ "error", 4 ], "no-unused-vars": [ "error", { "args": "none" }], "no-param-reassign": [ "off" ] -- GitLab