From eb7b5e569b0da7c9c24dbcdc31f5150b3719e5f2 Mon Sep 17 00:00:00 2001 From: Jonathan Neal Date: Sun, 26 Mar 2017 18:19:54 -0400 Subject: [PATCH] Update stylelint configuration --- package.json | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 0468b70..068d0e2 100644 --- a/package.json +++ b/package.json @@ -9,8 +9,8 @@ "normalize.css" ], "devDependencies": { - "stylelint": "^7.3.1", - "stylelint-config-standard": "^13.0.2" + "stylelint": "^7.9.0", + "stylelint-config-standard": "^16.0.0" }, "scripts": { "test": "stylelint normalize.css" @@ -24,6 +24,14 @@ "bugs": "https://github.com/necolas/normalize.css/issues", "homepage": "https://necolas.github.io/normalize.css", "stylelint": { - "extends": "stylelint-config-standard" + "extends": "stylelint-config-standard", + "rules": { + "font-family-no-duplicate-names": [ + true, + { + "ignoreFontFamilyNames": ["monospace"] + } + ] + } } }