I want to match everything except this
/^_.*\.scss$/i
I tried this
/^(?!_.*\.scss).*$/i
but it did not match on
_dsdfsdfsdf.scss.sd
I think its because the regex says you only can't start with that. But in this case, it should match this.
How can this be fixed?