Is there any method to determine from a diff file whether a file has more content after the diff

70 Views Asked by At

For example, here is a simple diff:

diff --git a/.eslintrc.json b/.eslintrc.json
index 3badf81f..2cd7119b 100644
--- a/.eslintrc.json
+++ b/.eslintrc.json
@@ -14,3 +14,4 @@
         "browser": true,
-        "node": true
+        "node": true,
+        "es6": true
     },
@@ -42,3 +43,3 @@
         "dot-location": ["error", "property"],
-        "dot-notation": ["error", {"allowKeywords": false}],
+        "dot-notation": ["error", {"allowKeywords": true}],
         "eol-last": ["error", "always"],
@@ -168,3 +169,3 @@
         "no-restricted-syntax": "off",
-        "no-return-assign": "error",
+        "no-return-assign": ["error", "except-parens"],
         "no-return-await": "error",
@@ -284,3 +285,3 @@
         "react/jsx-max-props-per-line": ["error", {"when": "multiline", "maximum": 1}],
-        "react/jsx-no-bind": "warn",
+        "react/jsx-no-bind": ["warn", {"ignoreRefs": true}],
         "react/jsx-no-comment-textnodes": "warn",
@@ -326,3 +327,3 @@
         "react/sort-comp": [
-            2,
+            0,
             {
@@ -331,2 +332,4 @@
                     "static-methods",
+                    "state",
+                    "properties",
                     "lifecycle",
@@ -345,6 +348,5 @@
                     "lifecycle": [
-                        "constructor",
                         "getDefaultProps",
                         "getInitialState",
-                        "state",
+                        "constructor",
                         "getChildContext",

In order to visualize it with an "see collapsed code" functionality, I must try to determine whether there are any content after the last line of diff (the "getChildContext", line), is there any reliable method to archive this?

0

There are 0 best solutions below