From b72191ae680f0c6eff241be4ae82872f46d5a1af Mon Sep 17 00:00:00 2001 From: Sean Robertson Date: Mon, 21 Jun 2021 13:04:29 +1200 Subject: [PATCH] Increase Linter max lines for newPage.jsx Increase the maximum number of lines permitted by the Linter for the newPage.jsx file to 300 (was 200). --- client/homebrew/pages/newPage/newPage.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/client/homebrew/pages/newPage/newPage.jsx b/client/homebrew/pages/newPage/newPage.jsx index 6d5d20cfc..13509f53c 100644 --- a/client/homebrew/pages/newPage/newPage.jsx +++ b/client/homebrew/pages/newPage/newPage.jsx @@ -1,3 +1,4 @@ +/*eslint max-lines: ["warn", {"max": 300, "skipBlankLines": true, "skipComments": true}]*/ require('./newPage.less'); const React = require('react'); const createClass = require('create-react-class');