mirror of
https://github.com/Doodle3D/doodle3d-client.git
synced 2024-11-21 17:07:55 +01:00
12 lines
219 B
Lua
12 lines
219 B
Lua
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
|