From 586a64e6576cc9ce396dd232922df70fcd8db088 Mon Sep 17 00:00:00 2001 From: Umherirrender Date: Wed, 8 Jan 2020 19:29:58 +0000 Subject: [PATCH] build: Remove unneeded exclude from .eslintrc.json This reverts parts of commit 1cb5c2f93b0d860acb450a5a1267564171869127. Change-Id: I581ad903e73e3028648a24363232218cee17fe1e --- .eslintrc.json | 25 +------------------------ 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index abb0110..8839664 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -1,27 +1,4 @@ { "root": true, - "extends": "wikimedia", - "rules": { - "brace-style": "warn", - "camelcase": "warn", - "eqeqeq": "warn", - "max-len": "warn", - "max-statements-per-line": "warn", - "new-cap": "warn", - "no-constant-condition": "warn", - "no-dupe-keys": "warn", - "no-empty": "warn", - "no-implicit-globals": "warn", - "no-mixed-spaces-and-tabs": "warn", - "no-redeclare": "warn", - "no-tabs": "warn", - "no-undef": "warn", - "no-underscore-dangle": "warn", - "no-unused-vars": "warn", - "no-use-before-define": "warn", - "no-useless-concat": "warn", - "one-var": "warn", - "valid-jsdoc": "warn", - "vars-on-top": "warn" - } + "extends": "wikimedia" }