From a2215eff59f1847aa36d887ebb9ebde654a8c31c Mon Sep 17 00:00:00 2001 From: HardiReady Date: Mon, 12 Mar 2018 09:50:42 +0100 Subject: [PATCH] reconfigure linting rules --- api/.eslintrc.js | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/api/.eslintrc.js b/api/.eslintrc.js index a2a1e43..ce3478c 100644 --- a/api/.eslintrc.js +++ b/api/.eslintrc.js @@ -1,6 +1,11 @@ module.exports = { - "extends": "google", - "parserOptions": { - "ecmaVersion": 6 + 'extends': 'google', + 'parserOptions': { + 'ecmaVersion': 6 + }, + 'rules': { + 'max-len': [2, 120, 4, { + 'ignoreUrls': true + }], } };