You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
local M = {
|
|
BASE_PATH = 'js',
|
|
EXCLUDE_FILES = {},
|
|
PROCESS_FILES = {
|
|
['js/[^/]*%.js'] = 'cstyle',
|
|
['js/api/[^/]*%.js'] = 'cstyle',
|
|
['js/settings/[^/]*%.js'] = 'cstyle'
|
|
},
|
|
IGNORE_GIT_CHANGED = false
|
|
}
|
|
return M
|