From 07dfa81a8903a18449552e8e20686050ed35c83b Mon Sep 17 00:00:00 2001 From: winkidney Date: Fri, 22 Nov 2019 17:38:40 +0800 Subject: [PATCH] Feature: Turn off line-length test for eslint --- pinry-spa/.eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/pinry-spa/.eslintrc.js b/pinry-spa/.eslintrc.js index 6a9d8c4..a18aa4e 100644 --- a/pinry-spa/.eslintrc.js +++ b/pinry-spa/.eslintrc.js @@ -10,6 +10,7 @@ module.exports = { rules: { 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off', 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', + 'max-len': 'off', }, parserOptions: { parser: 'babel-eslint',