You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We consider wildcards to be very dangerous from a security standpoint. It is too easy to have something strange in a filename that causes a wildcard to not match. This made worse if there are multiple programs that evaluate wildcards: something could match in one and not in the other.
6
+
7
+
We are explicitly choosing not to support wildcards when specifying top-level paths. Ideally, you should specify the current directory (with `.`) and every file and directry should be included.
8
+
9
+
Additionally, we want to check *every* file. Even hidden and ignored files should obey basic sanity rules. Thus, we have an `not-linted` rule that will flag every file that doesn't get linted.
0 commit comments