diff --git a/.eslintrc.js b/.eslintrc.js index deeecb5..1e6e783 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -23,5 +23,14 @@ module.exports = { 'no-alert': 'off', 'no-restricted-globals': 'off', 'prefer-destructuring': ['error', { object: true, array: false }], + 'max-len': [ + 1, + { + code: 100, + ignoreComments: true, + ignoreStrings: true, + ignoreTemplateLiterals: true, + }, + ], }, }; diff --git a/.prettierrc.json b/.prettierrc.json index 9409967..a20502b 100644 --- a/.prettierrc.json +++ b/.prettierrc.json @@ -1,5 +1,4 @@ { "singleQuote": true, - "trailingComma": "all", - "printWidth": 80 + "trailingComma": "all" }