Force all syntax regex to ends with $

- Lots of syntax regex are poorly written and did not ends with a '$',
   which caused them competing with other regex rules.
This commit is contained in:
davidhcefx 2023-04-12 14:52:10 +08:00
parent 1aa64a86cf
commit 3b48b83389
20 changed files with 20 additions and 20 deletions

View file

@ -1,6 +1,6 @@
## Here is an example for Ruby.
##
syntax "Ruby" "\.rb$" "Gemfile" "config.ru" "Rakefile" "Capfile" "Vagrantfile"
syntax "Ruby" "\.rb$" "Gemfile$" "config.ru$" "Rakefile$" "Capfile$" "Vagrantfile$"
header "^#!.*/(env +)?ruby( |$)"
magic "Ruby script"
linter ruby -w -c