Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Made '-' in font-awesome optional in vendor.yml #4440

Merged
merged 2 commits into from
Apr 4, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions lib/linguist/vendor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,17 @@
# Bootstrap css and js
- (^|/)bootstrap([^.]*)\.(js|css|less|scss|styl)$
- (^|/)custom\.bootstrap([^\s]*)(js|css|less|scss|styl)$
# Bootstrap with a directory between the files and the main folder like bootstrap/css/bootstrap.css
- (^|/)bootstrap/(css|js)/.*\.(js|css|less|scss|styl)$
Ferido07 marked this conversation as resolved.
Show resolved Hide resolved

# Font Awesome
- (^|/)font-awesome\.(css|less|scss|styl)$
- (^|/)font-awesome/.*\.(css|less|scss|styl)$
- (^|/)fontawesome\.(css|less|scss|styl)$
- (^|/)fontawesome/.*\.(css|less|scss|styl)$
Ferido07 marked this conversation as resolved.
Show resolved Hide resolved
# Font Awesome with a directory between the files and the main folder like fontawesome/css/fontawesome.all.css
- (^|/)font-awesome/.*/.*\.(js|css|less|scss|styl)$
- (^|/)fontawesome/.*/.*\.(js|css|less|scss|styl)$
Ferido07 marked this conversation as resolved.
Show resolved Hide resolved

# Foundation css
- (^|/)foundation\.(css|less|scss|styl)$
Expand Down Expand Up @@ -276,6 +283,9 @@
- (^|/)gradle/wrapper/

## Java ##
# Java with maven based directory structure
- /src/main/resources/static/vendor/.*
- /src/test/resources/static/vendor/.*
pchaigno marked this conversation as resolved.
Show resolved Hide resolved

# Maven
- (^|/)mvnw$
Expand Down