diff --git a/.eslintrc.json b/.eslintrc.json
index 5f86a7c2be91b11c7cafbb5307be5d28a4e3116e..ead405793c8ffb1183dbcd0b6685594f4f8f032a 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -45,6 +45,20 @@
         "dot-notation": "off",
         "linebreak-style": ["error", "unix"],
         "eol-last": "warn",
+        "max-len": [
+            "warn",
+            {
+                "code": 80,
+                "tabWidth": 4,
+                "ignoreComments": true,
+                "ignoreTrailingComments": true,
+                "ignoreUrls": true,
+                "ignoreStrings": true,
+                "ignoreTemplateLiterals": true,
+                "ignoreRegExpLiterals": true
+            }
+        ],
+        "max-nested-callbacks": "error",
         "unicode-bom": [
             "error",
             "never"