From a4f070ba925879b0e2bd4b7d414d158a455a3d0e Mon Sep 17 00:00:00 2001 From: Pascal Hertleif Date: Fri, 15 Jul 2016 13:08:13 +0200 Subject: [PATCH] Add Level 'Deprecated' --- util/gh-pages/index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util/gh-pages/index.html b/util/gh-pages/index.html index dd72ee234..662aabeb2 100644 --- a/util/gh-pages/index.html +++ b/util/gh-pages/index.html @@ -75,6 +75,7 @@ Allow Warn Deny + Deprecated @@ -131,7 +132,7 @@ }) .controller("lintList", function ($scope, $http) { // Level filter - $scope.levels = {Allow: true, Warn: true, Deny: true}; + $scope.levels = {Allow: true, Warn: true, Deny: true, Deprecated: true}; $scope.byLevels = function (lint) { return $scope.levels[lint.level]; };