From 8c70a8bc6d8a877e1abc8323512efad00ea7cc83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matija=20Marohni=C4=87?= Date: Thu, 7 Jan 2016 01:11:00 +0100 Subject: [PATCH] Ignore URLs in max-len --- packages/eslint-config-airbnb/rules/style.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/eslint-config-airbnb/rules/style.js b/packages/eslint-config-airbnb/rules/style.js index d2c9cedf..ec68b16e 100644 --- a/packages/eslint-config-airbnb/rules/style.js +++ b/packages/eslint-config-airbnb/rules/style.js @@ -37,7 +37,7 @@ module.exports = { // specify the maximum length of a line in your program // https://github.com/eslint/eslint/blob/master/docs/rules/max-len.md 'max-len': [2, 100, 2, { - 'ignoreUrls': false, + 'ignoreUrls': true, 'ignoreComments': false }], // specify the maximum depth callbacks can be nested