-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
49 lines (46 loc) · 1.38 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
return array(
// ignore paths accept relative path
// ie: 'relative/path/to/my/project'
// or: 'relative/path/to/a/file.ext'
'ignored_paths' => array(
'index.php',
'LocalhostIndexer',
),
// ignore files in every directory
// ie: single_file_name_without_path.ext
'ignored_files' => array(
'.DS_Store',
'.git',
),
//file and folder list view date format
'date_format' => "d-m-Y H:i:s",
'ace' => array(
//default file extension mapping to edit in ace editor
'extensions' => array(
// 'file extension' => 'ace library'
'php' => 'php',
'js' => 'javascript',
'html' => 'html',
'css' => 'css',
'json' => 'json',
'sql' => 'sql',
'xml' => 'xml',
'py' => 'python',
'diff' => 'diff',
'htaccess' => 'apache_conf',
'gitignore' => 'gitignore',
'hbs' => 'handlebars',
'md' => 'markdown',
'coffee' => 'coffee',
'sh' => 'sh',
'less' => 'less',
'ini' => 'ini',
'yml' => 'yaml',
'log' => 'text',
'txt' => 'text',
// '' => 'smarty',
),
),
);
?>