When having the following definition on its own the plugin shows a linting failure as given in the summary: ``` ij-uint = 0..9007199254740991 ``` But when I add the following it's all fine. ``` ij-uint = 0..9007199254740991 ij-nint = -9007199254740991..-1 ij-int = -9007199254740991..9007199254740991 ``` It's not clear to me why the first example is actually broken.