Skip to content

Commit

Permalink
Add support for lua files.
Browse files Browse the repository at this point in the history
  • Loading branch information
rottmann committed Apr 20, 2016
1 parent 4201c76 commit 908ee00
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var SPECIFICATION_VERSION = '0.2.0';

var defaults = {
excludeFilters: [],
includeFilters: [ '.*\\.(clj|coffee|cpp|cs|dart|erl|exs?|go|groovy|ino?|java|js|litcoffee|php?|py|rb|scala|ts|pm)$' ],
includeFilters: [ '.*\\.(clj|coffee|cpp|cs|dart|erl|exs?|go|groovy|ino?|java|js|litcoffee|lua|php?|py|rb|scala|ts|pm)$' ],

src: path.join(__dirname, '../example/'),

Expand Down Expand Up @@ -49,6 +49,7 @@ var app = {
'.ex' : './languages/ex.js',
'.exs' : './languages/ex.js',
'.litcoffee' : './languages/coffee.js',
'.lua' : './languages/lua.js',
'.pm' : './languages/pm.js',
'.py' : './languages/py.js',
'.rb' : './languages/rb.js',
Expand Down

0 comments on commit 908ee00

Please sign in to comment.