config.codekit 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887
  1. {
  2. "CodeKitInfo": "This is a CodeKit 2.x project configuration file. It is designed to sync project settings across multiple machines. MODIFYING THE CONTENTS OF THIS FILE IS A POOR LIFE DECISION. If you do so, you will likely cause CodeKit to crash. This file is not useful unless accompanied by the project that created it in CodeKit 2. This file is not backwards-compatible with CodeKit 1.x. For more information, see: http:\/\/incident57.com\/codekit",
  3. "creatorBuild": "19051",
  4. "files": {
  5. "\/CONTRIBUTING.md": {
  6. "criticStyle": 0,
  7. "enableFootnotes": 0,
  8. "enableLabels": 1,
  9. "enableSmartQuotes": 1,
  10. "escapeLineBreaks": 0,
  11. "fileType": 4096,
  12. "ignore": 1,
  13. "ignoreWasSetByUser": 0,
  14. "inputAbbreviatedPath": "\/CONTRIBUTING.md",
  15. "maskEmailAddresses": 1,
  16. "outputAbbreviatedPath": "\/CONTRIBUTING.html",
  17. "outputFormat": 0,
  18. "outputPathIsOutsideProject": 0,
  19. "outputPathIsSetByUser": 0,
  20. "outputStyle": 0,
  21. "parseMetadata": 1,
  22. "processHTML": 0,
  23. "randomFootnoteNumbers": 0,
  24. "useCompatibilityMode": 0
  25. },
  26. "\/docker\/README.md": {
  27. "criticStyle": 0,
  28. "enableFootnotes": 0,
  29. "enableLabels": 1,
  30. "enableSmartQuotes": 1,
  31. "escapeLineBreaks": 0,
  32. "fileType": 4096,
  33. "ignore": 1,
  34. "ignoreWasSetByUser": 0,
  35. "inputAbbreviatedPath": "\/docker\/README.md",
  36. "maskEmailAddresses": 1,
  37. "outputAbbreviatedPath": "\/docker\/README.html",
  38. "outputFormat": 0,
  39. "outputPathIsOutsideProject": 0,
  40. "outputPathIsSetByUser": 0,
  41. "outputStyle": 0,
  42. "parseMetadata": 1,
  43. "processHTML": 0,
  44. "randomFootnoteNumbers": 0,
  45. "useCompatibilityMode": 0
  46. },
  47. "\/modules\/auth\/ldap\/README.md": {
  48. "criticStyle": 0,
  49. "enableFootnotes": 0,
  50. "enableLabels": 1,
  51. "enableSmartQuotes": 1,
  52. "escapeLineBreaks": 0,
  53. "fileType": 4096,
  54. "ignore": 1,
  55. "ignoreWasSetByUser": 0,
  56. "inputAbbreviatedPath": "\/modules\/auth\/ldap\/README.md",
  57. "maskEmailAddresses": 1,
  58. "outputAbbreviatedPath": "\/modules\/auth\/ldap\/README.html",
  59. "outputFormat": 0,
  60. "outputPathIsOutsideProject": 0,
  61. "outputPathIsSetByUser": 0,
  62. "outputStyle": 0,
  63. "parseMetadata": 1,
  64. "processHTML": 0,
  65. "randomFootnoteNumbers": 0,
  66. "useCompatibilityMode": 0
  67. },
  68. "\/modules\/uuid\/README.md": {
  69. "criticStyle": 0,
  70. "enableFootnotes": 0,
  71. "enableLabels": 1,
  72. "enableSmartQuotes": 1,
  73. "escapeLineBreaks": 0,
  74. "fileType": 4096,
  75. "ignore": 1,
  76. "ignoreWasSetByUser": 0,
  77. "inputAbbreviatedPath": "\/modules\/uuid\/README.md",
  78. "maskEmailAddresses": 1,
  79. "outputAbbreviatedPath": "\/modules\/uuid\/README.html",
  80. "outputFormat": 0,
  81. "outputPathIsOutsideProject": 0,
  82. "outputPathIsSetByUser": 0,
  83. "outputStyle": 0,
  84. "parseMetadata": 1,
  85. "processHTML": 0,
  86. "randomFootnoteNumbers": 0,
  87. "useCompatibilityMode": 0
  88. },
  89. "\/public\/css\/dropzone.css": {
  90. "fileType": 16,
  91. "ignore": 0,
  92. "ignoreWasSetByUser": 0,
  93. "inputAbbreviatedPath": "\/public\/css\/dropzone.css",
  94. "outputAbbreviatedPath": "No Output Path",
  95. "outputPathIsOutsideProject": 0,
  96. "outputPathIsSetByUser": 0
  97. },
  98. "\/public\/css\/font-awesome.min.css": {
  99. "fileType": 16,
  100. "ignore": 0,
  101. "ignoreWasSetByUser": 0,
  102. "inputAbbreviatedPath": "\/public\/css\/font-awesome.min.css",
  103. "outputAbbreviatedPath": "No Output Path",
  104. "outputPathIsOutsideProject": 0,
  105. "outputPathIsSetByUser": 0
  106. },
  107. "\/public\/css\/github.min.css": {
  108. "fileType": 16,
  109. "ignore": 0,
  110. "ignoreWasSetByUser": 0,
  111. "inputAbbreviatedPath": "\/public\/css\/github.min.css",
  112. "outputAbbreviatedPath": "No Output Path",
  113. "outputPathIsOutsideProject": 0,
  114. "outputPathIsSetByUser": 0
  115. },
  116. "\/public\/css\/gogs.css": {
  117. "fileType": 16,
  118. "ignore": 0,
  119. "ignoreWasSetByUser": 0,
  120. "inputAbbreviatedPath": "\/public\/css\/gogs.css",
  121. "outputAbbreviatedPath": "No Output Path",
  122. "outputPathIsOutsideProject": 0,
  123. "outputPathIsSetByUser": 0
  124. },
  125. "\/public\/css\/gogs.min.css": {
  126. "fileType": 16,
  127. "ignore": 1,
  128. "ignoreWasSetByUser": 0,
  129. "inputAbbreviatedPath": "\/public\/css\/gogs.min.css",
  130. "outputAbbreviatedPath": "No Output Path",
  131. "outputPathIsOutsideProject": 0,
  132. "outputPathIsSetByUser": 0
  133. },
  134. "\/public\/css\/jquery.datetimepicker.css": {
  135. "fileType": 16,
  136. "ignore": 0,
  137. "ignoreWasSetByUser": 0,
  138. "inputAbbreviatedPath": "\/public\/css\/jquery.datetimepicker.css",
  139. "outputAbbreviatedPath": "No Output Path",
  140. "outputPathIsOutsideProject": 0,
  141. "outputPathIsSetByUser": 0
  142. },
  143. "\/public\/css\/jquery.minicolors.css": {
  144. "fileType": 16,
  145. "ignore": 0,
  146. "ignoreWasSetByUser": 0,
  147. "inputAbbreviatedPath": "\/public\/css\/jquery.minicolors.css",
  148. "outputAbbreviatedPath": "No Output Path",
  149. "outputPathIsOutsideProject": 0,
  150. "outputPathIsSetByUser": 0
  151. },
  152. "\/public\/css\/semantic.min.css": {
  153. "fileType": 16,
  154. "ignore": 0,
  155. "ignoreWasSetByUser": 0,
  156. "inputAbbreviatedPath": "\/public\/css\/semantic.min.css",
  157. "outputAbbreviatedPath": "No Output Path",
  158. "outputPathIsOutsideProject": 0,
  159. "outputPathIsSetByUser": 0
  160. },
  161. "\/public\/css\/themes\/default\/assets\/images\/flags.png": {
  162. "fileType": 32768,
  163. "ignore": 0,
  164. "ignoreWasSetByUser": 0,
  165. "initialSize": 28123,
  166. "inputAbbreviatedPath": "\/public\/css\/themes\/default\/assets\/images\/flags.png",
  167. "outputAbbreviatedPath": "\/public\/css\/themes\/default\/assets\/images\/flags.png",
  168. "outputPathIsOutsideProject": 0,
  169. "outputPathIsSetByUser": 0,
  170. "processed": 0
  171. },
  172. "\/public\/img\/404.png": {
  173. "fileType": 32768,
  174. "ignore": 0,
  175. "ignoreWasSetByUser": 0,
  176. "initialSize": 9776,
  177. "inputAbbreviatedPath": "\/public\/img\/404.png",
  178. "outputAbbreviatedPath": "\/public\/img\/404.png",
  179. "outputPathIsOutsideProject": 0,
  180. "outputPathIsSetByUser": 0,
  181. "processed": 1
  182. },
  183. "\/public\/img\/500.png": {
  184. "fileType": 32768,
  185. "ignore": 0,
  186. "ignoreWasSetByUser": 0,
  187. "initialSize": 12087,
  188. "inputAbbreviatedPath": "\/public\/img\/500.png",
  189. "outputAbbreviatedPath": "\/public\/img\/500.png",
  190. "outputPathIsOutsideProject": 0,
  191. "outputPathIsSetByUser": 0,
  192. "processed": 1
  193. },
  194. "\/public\/img\/avatar_default.jpg": {
  195. "fileType": 16384,
  196. "ignore": 0,
  197. "ignoreWasSetByUser": 0,
  198. "initialSize": 6951,
  199. "inputAbbreviatedPath": "\/public\/img\/avatar_default.jpg",
  200. "outputAbbreviatedPath": "\/public\/img\/avatar_default.jpg",
  201. "outputPathIsOutsideProject": 0,
  202. "outputPathIsSetByUser": 0,
  203. "processed": 1
  204. },
  205. "\/public\/img\/checkmark.png": {
  206. "fileType": 32768,
  207. "ignore": 0,
  208. "ignoreWasSetByUser": 0,
  209. "initialSize": 169,
  210. "inputAbbreviatedPath": "\/public\/img\/checkmark.png",
  211. "outputAbbreviatedPath": "\/public\/img\/checkmark.png",
  212. "outputPathIsOutsideProject": 0,
  213. "outputPathIsSetByUser": 0,
  214. "processed": 1
  215. },
  216. "\/public\/img\/favicon.png": {
  217. "fileType": 32768,
  218. "ignore": 0,
  219. "ignoreWasSetByUser": 0,
  220. "initialSize": 10889,
  221. "inputAbbreviatedPath": "\/public\/img\/favicon.png",
  222. "outputAbbreviatedPath": "\/public\/img\/favicon.png",
  223. "outputPathIsOutsideProject": 0,
  224. "outputPathIsSetByUser": 0,
  225. "processed": 1
  226. },
  227. "\/public\/img\/gogs-lg.png": {
  228. "fileType": 32768,
  229. "ignore": 0,
  230. "ignoreWasSetByUser": 0,
  231. "initialSize": 97926,
  232. "inputAbbreviatedPath": "\/public\/img\/gogs-lg.png",
  233. "outputAbbreviatedPath": "\/public\/img\/gogs-lg.png",
  234. "outputPathIsOutsideProject": 0,
  235. "outputPathIsSetByUser": 0,
  236. "processed": 1
  237. },
  238. "\/public\/less\/_admin.less": {
  239. "allowInsecureImports": 0,
  240. "createSourceMap": 0,
  241. "disableJavascript": 0,
  242. "fileType": 1,
  243. "ieCompatibility": 1,
  244. "ignore": 1,
  245. "ignoreWasSetByUser": 0,
  246. "inputAbbreviatedPath": "\/public\/less\/_admin.less",
  247. "outputAbbreviatedPath": "\/public\/css\/_admin.css",
  248. "outputPathIsOutsideProject": 0,
  249. "outputPathIsSetByUser": 0,
  250. "outputStyle": 0,
  251. "relativeURLS": 0,
  252. "shouldRunAutoprefixer": 0,
  253. "shouldRunBless": 0,
  254. "strictImports": 0,
  255. "strictMath": 0,
  256. "strictUnits": 0
  257. },
  258. "\/public\/less\/_base.less": {
  259. "allowInsecureImports": 0,
  260. "createSourceMap": 0,
  261. "disableJavascript": 0,
  262. "fileType": 1,
  263. "ieCompatibility": 1,
  264. "ignore": 1,
  265. "ignoreWasSetByUser": 0,
  266. "inputAbbreviatedPath": "\/public\/less\/_base.less",
  267. "outputAbbreviatedPath": "\/public\/css\/_base.css",
  268. "outputPathIsOutsideProject": 0,
  269. "outputPathIsSetByUser": 0,
  270. "outputStyle": 0,
  271. "relativeURLS": 0,
  272. "shouldRunAutoprefixer": 0,
  273. "shouldRunBless": 0,
  274. "strictImports": 0,
  275. "strictMath": 0,
  276. "strictUnits": 0
  277. },
  278. "\/public\/less\/_form.less": {
  279. "allowInsecureImports": 0,
  280. "createSourceMap": 0,
  281. "disableJavascript": 0,
  282. "fileType": 1,
  283. "ieCompatibility": 1,
  284. "ignore": 1,
  285. "ignoreWasSetByUser": 0,
  286. "inputAbbreviatedPath": "\/public\/less\/_form.less",
  287. "outputAbbreviatedPath": "\/public\/css\/_form.css",
  288. "outputPathIsOutsideProject": 0,
  289. "outputPathIsSetByUser": 0,
  290. "outputStyle": 0,
  291. "relativeURLS": 0,
  292. "shouldRunAutoprefixer": 0,
  293. "shouldRunBless": 0,
  294. "strictImports": 0,
  295. "strictMath": 0,
  296. "strictUnits": 0
  297. },
  298. "\/public\/less\/_home.less": {
  299. "allowInsecureImports": 0,
  300. "createSourceMap": 0,
  301. "disableJavascript": 0,
  302. "fileType": 1,
  303. "ieCompatibility": 1,
  304. "ignore": 1,
  305. "ignoreWasSetByUser": 0,
  306. "inputAbbreviatedPath": "\/public\/less\/_home.less",
  307. "outputAbbreviatedPath": "\/public\/css\/_home.css",
  308. "outputPathIsOutsideProject": 0,
  309. "outputPathIsSetByUser": 0,
  310. "outputStyle": 0,
  311. "relativeURLS": 0,
  312. "shouldRunAutoprefixer": 0,
  313. "shouldRunBless": 0,
  314. "strictImports": 0,
  315. "strictMath": 0,
  316. "strictUnits": 0
  317. },
  318. "\/public\/less\/_install.less": {
  319. "allowInsecureImports": 0,
  320. "createSourceMap": 0,
  321. "disableJavascript": 0,
  322. "fileType": 1,
  323. "ieCompatibility": 1,
  324. "ignore": 1,
  325. "ignoreWasSetByUser": 0,
  326. "inputAbbreviatedPath": "\/public\/less\/_install.less",
  327. "outputAbbreviatedPath": "\/public\/css\/_install.css",
  328. "outputPathIsOutsideProject": 0,
  329. "outputPathIsSetByUser": 0,
  330. "outputStyle": 0,
  331. "relativeURLS": 0,
  332. "shouldRunAutoprefixer": 0,
  333. "shouldRunBless": 0,
  334. "strictImports": 0,
  335. "strictMath": 0,
  336. "strictUnits": 0
  337. },
  338. "\/public\/less\/_markdown.less": {
  339. "allowInsecureImports": 0,
  340. "createSourceMap": 0,
  341. "disableJavascript": 0,
  342. "fileType": 1,
  343. "ieCompatibility": 1,
  344. "ignore": 1,
  345. "ignoreWasSetByUser": 0,
  346. "inputAbbreviatedPath": "\/public\/less\/_markdown.less",
  347. "outputAbbreviatedPath": "\/public\/css\/_markdown.css",
  348. "outputPathIsOutsideProject": 0,
  349. "outputPathIsSetByUser": 0,
  350. "outputStyle": 0,
  351. "relativeURLS": 0,
  352. "shouldRunAutoprefixer": 0,
  353. "shouldRunBless": 0,
  354. "strictImports": 0,
  355. "strictMath": 0,
  356. "strictUnits": 0
  357. },
  358. "\/public\/less\/_octicons.less": {
  359. "allowInsecureImports": 0,
  360. "createSourceMap": 0,
  361. "disableJavascript": 0,
  362. "fileType": 1,
  363. "ieCompatibility": 1,
  364. "ignore": 1,
  365. "ignoreWasSetByUser": 0,
  366. "inputAbbreviatedPath": "\/public\/less\/_octicons.less",
  367. "outputAbbreviatedPath": "\/public\/css\/_octicons.css",
  368. "outputPathIsOutsideProject": 0,
  369. "outputPathIsSetByUser": 0,
  370. "outputStyle": 0,
  371. "relativeURLS": 0,
  372. "shouldRunAutoprefixer": 0,
  373. "shouldRunBless": 0,
  374. "strictImports": 0,
  375. "strictMath": 0,
  376. "strictUnits": 0
  377. },
  378. "\/public\/less\/_repository.less": {
  379. "allowInsecureImports": 0,
  380. "createSourceMap": 0,
  381. "disableJavascript": 0,
  382. "fileType": 1,
  383. "ieCompatibility": 1,
  384. "ignore": 1,
  385. "ignoreWasSetByUser": 0,
  386. "inputAbbreviatedPath": "\/public\/less\/_repository.less",
  387. "outputAbbreviatedPath": "\/public\/css\/_repository.css",
  388. "outputPathIsOutsideProject": 0,
  389. "outputPathIsSetByUser": 0,
  390. "outputStyle": 0,
  391. "relativeURLS": 0,
  392. "shouldRunAutoprefixer": 0,
  393. "shouldRunBless": 0,
  394. "strictImports": 0,
  395. "strictMath": 0,
  396. "strictUnits": 0
  397. },
  398. "\/public\/less\/gogs.less": {
  399. "allowInsecureImports": 0,
  400. "createSourceMap": 0,
  401. "disableJavascript": 0,
  402. "fileType": 1,
  403. "ieCompatibility": 1,
  404. "ignore": 0,
  405. "ignoreWasSetByUser": 0,
  406. "inputAbbreviatedPath": "\/public\/less\/gogs.less",
  407. "outputAbbreviatedPath": "\/public\/css\/gogs.min.css",
  408. "outputPathIsOutsideProject": 0,
  409. "outputPathIsSetByUser": 1,
  410. "outputStyle": 1,
  411. "relativeURLS": 0,
  412. "shouldRunAutoprefixer": 0,
  413. "shouldRunBless": 0,
  414. "strictImports": 0,
  415. "strictMath": 0,
  416. "strictUnits": 0
  417. },
  418. "\/public\/ng\/css\/gogs.css": {
  419. "fileType": 16,
  420. "ignore": 1,
  421. "ignoreWasSetByUser": 0,
  422. "inputAbbreviatedPath": "\/public\/ng\/css\/gogs.css",
  423. "outputAbbreviatedPath": "No Output Path",
  424. "outputPathIsOutsideProject": 0,
  425. "outputPathIsSetByUser": 0
  426. },
  427. "\/public\/ng\/css\/magnific-popup.css": {
  428. "fileType": 16,
  429. "ignore": 0,
  430. "ignoreWasSetByUser": 0,
  431. "inputAbbreviatedPath": "\/public\/ng\/css\/magnific-popup.css",
  432. "outputAbbreviatedPath": "No Output Path",
  433. "outputPathIsOutsideProject": 0,
  434. "outputPathIsSetByUser": 0
  435. },
  436. "\/public\/ng\/css\/tipsy.css": {
  437. "fileType": 16,
  438. "ignore": 0,
  439. "ignoreWasSetByUser": 0,
  440. "inputAbbreviatedPath": "\/public\/ng\/css\/tipsy.css",
  441. "outputAbbreviatedPath": "No Output Path",
  442. "outputPathIsOutsideProject": 0,
  443. "outputPathIsSetByUser": 0
  444. },
  445. "\/public\/ng\/css\/ui.css": {
  446. "fileType": 16,
  447. "ignore": 1,
  448. "ignoreWasSetByUser": 0,
  449. "inputAbbreviatedPath": "\/public\/ng\/css\/ui.css",
  450. "outputAbbreviatedPath": "No Output Path",
  451. "outputPathIsOutsideProject": 0,
  452. "outputPathIsSetByUser": 0
  453. },
  454. "\/public\/ng\/fonts\/octicons.css": {
  455. "fileType": 16,
  456. "ignore": 0,
  457. "ignoreWasSetByUser": 0,
  458. "inputAbbreviatedPath": "\/public\/ng\/fonts\/octicons.css",
  459. "outputAbbreviatedPath": "No Output Path",
  460. "outputPathIsOutsideProject": 0,
  461. "outputPathIsSetByUser": 0
  462. },
  463. "\/public\/ng\/js\/gogs.js": {
  464. "fileType": 64,
  465. "ignore": 0,
  466. "ignoreWasSetByUser": 0,
  467. "inputAbbreviatedPath": "\/public\/ng\/js\/gogs.js",
  468. "outputAbbreviatedPath": "\/public\/ng\/js\/min\/gogs-min.js",
  469. "outputPathIsOutsideProject": 0,
  470. "outputPathIsSetByUser": 0,
  471. "outputStyle": 1,
  472. "syntaxCheckerStyle": 1
  473. },
  474. "\/public\/ng\/js\/gogs\/issue_label.js": {
  475. "fileType": 64,
  476. "ignore": 1,
  477. "ignoreWasSetByUser": 0,
  478. "inputAbbreviatedPath": "\/public\/ng\/js\/gogs\/issue_label.js",
  479. "outputAbbreviatedPath": "\/public\/ng\/js\/gogs\/min\/issue_label-min.js",
  480. "outputPathIsOutsideProject": 0,
  481. "outputPathIsSetByUser": 0,
  482. "outputStyle": 1,
  483. "syntaxCheckerStyle": 1
  484. },
  485. "\/public\/ng\/js\/lib\/jquery-1.11.1.min.js": {
  486. "fileType": 64,
  487. "ignore": 1,
  488. "ignoreWasSetByUser": 0,
  489. "inputAbbreviatedPath": "\/public\/ng\/js\/lib\/jquery-1.11.1.min.js",
  490. "outputAbbreviatedPath": "\/public\/ng\/js\/lib\/min\/jquery-1.11.1.min-min.js",
  491. "outputPathIsOutsideProject": 0,
  492. "outputPathIsSetByUser": 0,
  493. "outputStyle": 1,
  494. "syntaxCheckerStyle": 1
  495. },
  496. "\/public\/ng\/js\/lib\/jquery.magnific-popup.min.js": {
  497. "fileType": 64,
  498. "ignore": 0,
  499. "ignoreWasSetByUser": 0,
  500. "inputAbbreviatedPath": "\/public\/ng\/js\/lib\/jquery.magnific-popup.min.js",
  501. "outputAbbreviatedPath": "\/public\/ng\/js\/lib\/min\/jquery.magnific-popup.min-min.js",
  502. "outputPathIsOutsideProject": 0,
  503. "outputPathIsSetByUser": 0,
  504. "outputStyle": 1,
  505. "syntaxCheckerStyle": 1
  506. },
  507. "\/public\/ng\/js\/lib\/jquery.tipsy.js": {
  508. "fileType": 64,
  509. "ignore": 1,
  510. "ignoreWasSetByUser": 0,
  511. "inputAbbreviatedPath": "\/public\/ng\/js\/lib\/jquery.tipsy.js",
  512. "outputAbbreviatedPath": "\/public\/ng\/js\/lib\/min\/jquery.tipsy-min.js",
  513. "outputPathIsOutsideProject": 0,
  514. "outputPathIsSetByUser": 0,
  515. "outputStyle": 1,
  516. "syntaxCheckerStyle": 1
  517. },
  518. "\/public\/ng\/js\/lib\/lib.js": {
  519. "fileType": 64,
  520. "ignore": 1,
  521. "ignoreWasSetByUser": 1,
  522. "inputAbbreviatedPath": "\/public\/ng\/js\/lib\/lib.js",
  523. "outputAbbreviatedPath": "\/public\/ng\/js\/lib\/min\/lib-min.js",
  524. "outputPathIsOutsideProject": 0,
  525. "outputPathIsSetByUser": 0,
  526. "outputStyle": 1,
  527. "syntaxCheckerStyle": 1
  528. },
  529. "\/public\/ng\/js\/min\/gogs-min.js": {
  530. "fileType": 64,
  531. "ignore": 1,
  532. "ignoreWasSetByUser": 0,
  533. "inputAbbreviatedPath": "\/public\/ng\/js\/min\/gogs-min.js",
  534. "outputAbbreviatedPath": "\/public\/ng\/js\/min\/min\/gogs-min-min.js",
  535. "outputPathIsOutsideProject": 0,
  536. "outputPathIsSetByUser": 0,
  537. "outputStyle": 1,
  538. "syntaxCheckerStyle": 1
  539. },
  540. "\/public\/ng\/js\/utils\/preview.js": {
  541. "fileType": 64,
  542. "ignore": 1,
  543. "ignoreWasSetByUser": 0,
  544. "inputAbbreviatedPath": "\/public\/ng\/js\/utils\/preview.js",
  545. "outputAbbreviatedPath": "\/public\/ng\/js\/utils\/min\/preview-min.js",
  546. "outputPathIsOutsideProject": 0,
  547. "outputPathIsSetByUser": 0,
  548. "outputStyle": 1,
  549. "syntaxCheckerStyle": 1
  550. },
  551. "\/public\/ng\/js\/utils\/tabs.js": {
  552. "fileType": 64,
  553. "ignore": 1,
  554. "ignoreWasSetByUser": 0,
  555. "inputAbbreviatedPath": "\/public\/ng\/js\/utils\/tabs.js",
  556. "outputAbbreviatedPath": "\/public\/ng\/js\/utils\/min\/tabs-min.js",
  557. "outputPathIsOutsideProject": 0,
  558. "outputPathIsSetByUser": 0,
  559. "outputStyle": 1,
  560. "syntaxCheckerStyle": 1
  561. },
  562. "\/public\/ng\/less\/gogs.less": {
  563. "allowInsecureImports": 0,
  564. "createSourceMap": 0,
  565. "disableJavascript": 0,
  566. "fileType": 1,
  567. "ieCompatibility": 1,
  568. "ignore": 0,
  569. "ignoreWasSetByUser": 0,
  570. "inputAbbreviatedPath": "\/public\/ng\/less\/gogs.less",
  571. "outputAbbreviatedPath": "\/public\/ng\/css\/gogs.css",
  572. "outputPathIsOutsideProject": 0,
  573. "outputPathIsSetByUser": 0,
  574. "outputStyle": 0,
  575. "relativeURLS": 0,
  576. "shouldRunAutoprefixer": 0,
  577. "shouldRunBless": 0,
  578. "strictImports": 0,
  579. "strictMath": 0,
  580. "strictUnits": 0
  581. },
  582. "\/public\/ng\/less\/gogs\/admin.less": {
  583. "allowInsecureImports": 0,
  584. "createSourceMap": 0,
  585. "disableJavascript": 0,
  586. "fileType": 1,
  587. "ieCompatibility": 1,
  588. "ignore": 1,
  589. "ignoreWasSetByUser": 0,
  590. "inputAbbreviatedPath": "\/public\/ng\/less\/gogs\/admin.less",
  591. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/admin.css",
  592. "outputPathIsOutsideProject": 0,
  593. "outputPathIsSetByUser": 0,
  594. "outputStyle": 0,
  595. "relativeURLS": 0,
  596. "shouldRunAutoprefixer": 0,
  597. "shouldRunBless": 0,
  598. "strictImports": 0,
  599. "strictMath": 0,
  600. "strictUnits": 0
  601. },
  602. "\/public\/ng\/less\/gogs\/base.less": {
  603. "allowInsecureImports": 0,
  604. "createSourceMap": 0,
  605. "disableJavascript": 0,
  606. "fileType": 1,
  607. "ieCompatibility": 1,
  608. "ignore": 1,
  609. "ignoreWasSetByUser": 0,
  610. "inputAbbreviatedPath": "\/public\/ng\/less\/gogs\/base.less",
  611. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/base.css",
  612. "outputPathIsOutsideProject": 0,
  613. "outputPathIsSetByUser": 0,
  614. "outputStyle": 0,
  615. "relativeURLS": 0,
  616. "shouldRunAutoprefixer": 0,
  617. "shouldRunBless": 0,
  618. "strictImports": 0,
  619. "strictMath": 0,
  620. "strictUnits": 0
  621. },
  622. "\/public\/ng\/less\/gogs\/dashboard.less": {
  623. "allowInsecureImports": 0,
  624. "createSourceMap": 0,
  625. "disableJavascript": 0,
  626. "fileType": 1,
  627. "ieCompatibility": 1,
  628. "ignore": 1,
  629. "ignoreWasSetByUser": 0,
  630. "inputAbbreviatedPath": "\/public\/ng\/less\/gogs\/dashboard.less",
  631. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/dashboard.css",
  632. "outputPathIsOutsideProject": 0,
  633. "outputPathIsSetByUser": 0,
  634. "outputStyle": 0,
  635. "relativeURLS": 0,
  636. "shouldRunAutoprefixer": 0,
  637. "shouldRunBless": 0,
  638. "strictImports": 0,
  639. "strictMath": 0,
  640. "strictUnits": 0
  641. },
  642. "\/public\/ng\/less\/gogs\/external.less": {
  643. "allowInsecureImports": 0,
  644. "createSourceMap": 0,
  645. "disableJavascript": 0,
  646. "fileType": 1,
  647. "ieCompatibility": 1,
  648. "ignore": 1,
  649. "ignoreWasSetByUser": 0,
  650. "inputAbbreviatedPath": "\/public\/ng\/less\/gogs\/external.less",
  651. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/external.css",
  652. "outputPathIsOutsideProject": 0,
  653. "outputPathIsSetByUser": 0,
  654. "outputStyle": 0,
  655. "relativeURLS": 0,
  656. "shouldRunAutoprefixer": 0,
  657. "shouldRunBless": 0,
  658. "strictImports": 0,
  659. "strictMath": 0,
  660. "strictUnits": 0
  661. },
  662. "\/public\/ng\/less\/gogs\/issue.less": {
  663. "allowInsecureImports": 0,
  664. "createSourceMap": 0,
  665. "disableJavascript": 0,
  666. "fileType": 1,
  667. "ieCompatibility": 1,
  668. "ignore": 1,
  669. "ignoreWasSetByUser": 0,
  670. "inputAbbreviatedPath": "\/public\/ng\/less\/gogs\/issue.less",
  671. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/issue.css",
  672. "outputPathIsOutsideProject": 0,
  673. "outputPathIsSetByUser": 0,
  674. "outputStyle": 0,
  675. "relativeURLS": 0,
  676. "shouldRunAutoprefixer": 0,
  677. "shouldRunBless": 0,
  678. "strictImports": 0,
  679. "strictMath": 0,
  680. "strictUnits": 0
  681. },
  682. "\/public\/ng\/less\/gogs\/markdown.less": {
  683. "allowInsecureImports": 0,
  684. "createSourceMap": 0,
  685. "disableJavascript": 0,
  686. "fileType": 1,
  687. "ieCompatibility": 1,
  688. "ignore": 1,
  689. "ignoreWasSetByUser": 0,
  690. "inputAbbreviatedPath": "\/public\/ng\/less\/gogs\/markdown.less",
  691. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/markdown.css",
  692. "outputPathIsOutsideProject": 0,
  693. "outputPathIsSetByUser": 0,
  694. "outputStyle": 0,
  695. "relativeURLS": 0,
  696. "shouldRunAutoprefixer": 0,
  697. "shouldRunBless": 0,
  698. "strictImports": 0,
  699. "strictMath": 0,
  700. "strictUnits": 0
  701. },
  702. "\/public\/ng\/less\/gogs\/organization.less": {
  703. "allowInsecureImports": 0,
  704. "createSourceMap": 0,
  705. "disableJavascript": 0,
  706. "fileType": 1,
  707. "ieCompatibility": 1,
  708. "ignore": 1,
  709. "ignoreWasSetByUser": 0,
  710. "inputAbbreviatedPath": "\/public\/ng\/less\/gogs\/organization.less",
  711. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/organization.css",
  712. "outputPathIsOutsideProject": 0,
  713. "outputPathIsSetByUser": 0,
  714. "outputStyle": 0,
  715. "relativeURLS": 0,
  716. "shouldRunAutoprefixer": 0,
  717. "shouldRunBless": 0,
  718. "strictImports": 0,
  719. "strictMath": 0,
  720. "strictUnits": 0
  721. },
  722. "\/public\/ng\/less\/gogs\/profile.less": {
  723. "allowInsecureImports": 0,
  724. "createSourceMap": 0,
  725. "disableJavascript": 0,
  726. "fileType": 1,
  727. "ieCompatibility": 1,
  728. "ignore": 1,
  729. "ignoreWasSetByUser": 0,
  730. "inputAbbreviatedPath": "\/public\/ng\/less\/gogs\/profile.less",
  731. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/profile.css",
  732. "outputPathIsOutsideProject": 0,
  733. "outputPathIsSetByUser": 0,
  734. "outputStyle": 0,
  735. "relativeURLS": 0,
  736. "shouldRunAutoprefixer": 0,
  737. "shouldRunBless": 0,
  738. "strictImports": 0,
  739. "strictMath": 0,
  740. "strictUnits": 0
  741. },
  742. "\/public\/ng\/less\/gogs\/repository.less": {
  743. "allowInsecureImports": 0,
  744. "createSourceMap": 0,
  745. "disableJavascript": 0,
  746. "fileType": 1,
  747. "ieCompatibility": 1,
  748. "ignore": 1,
  749. "ignoreWasSetByUser": 0,
  750. "inputAbbreviatedPath": "\/public\/ng\/less\/gogs\/repository.less",
  751. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/repository.css",
  752. "outputPathIsOutsideProject": 0,
  753. "outputPathIsSetByUser": 0,
  754. "outputStyle": 0,
  755. "relativeURLS": 0,
  756. "shouldRunAutoprefixer": 0,
  757. "shouldRunBless": 0,
  758. "strictImports": 0,
  759. "strictMath": 0,
  760. "strictUnits": 0
  761. },
  762. "\/public\/ng\/less\/gogs\/settings.less": {
  763. "allowInsecureImports": 0,
  764. "createSourceMap": 0,
  765. "disableJavascript": 0,
  766. "fileType": 1,
  767. "ieCompatibility": 1,
  768. "ignore": 1,
  769. "ignoreWasSetByUser": 0,
  770. "inputAbbreviatedPath": "\/public\/ng\/less\/gogs\/settings.less",
  771. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/settings.css",
  772. "outputPathIsOutsideProject": 0,
  773. "outputPathIsSetByUser": 0,
  774. "outputStyle": 0,
  775. "relativeURLS": 0,
  776. "shouldRunAutoprefixer": 0,
  777. "shouldRunBless": 0,
  778. "strictImports": 0,
  779. "strictMath": 0,
  780. "strictUnits": 0
  781. },
  782. "\/public\/ng\/less\/gogs\/sign.less": {
  783. "allowInsecureImports": 0,
  784. "createSourceMap": 0,
  785. "disableJavascript": 0,
  786. "fileType": 1,
  787. "ieCompatibility": 1,
  788. "ignore": 1,
  789. "ignoreWasSetByUser": 0,
  790. "inputAbbreviatedPath": "\/public\/ng\/less\/gogs\/sign.less",
  791. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/sign.css",
  792. "outputPathIsOutsideProject": 0,
  793. "outputPathIsSetByUser": 0,
  794. "outputStyle": 0,
  795. "relativeURLS": 0,
  796. "shouldRunAutoprefixer": 0,
  797. "shouldRunBless": 0,
  798. "strictImports": 0,
  799. "strictMath": 0,
  800. "strictUnits": 0
  801. },
  802. "\/public\/ng\/less\/ui.less": {
  803. "allowInsecureImports": 0,
  804. "createSourceMap": 0,
  805. "disableJavascript": 0,
  806. "fileType": 1,
  807. "ieCompatibility": 1,
  808. "ignore": 0,
  809. "ignoreWasSetByUser": 0,
  810. "inputAbbreviatedPath": "\/public\/ng\/less\/ui.less",
  811. "outputAbbreviatedPath": "\/public\/ng\/css\/ui.css",
  812. "outputPathIsOutsideProject": 0,
  813. "outputPathIsSetByUser": 0,
  814. "outputStyle": 0,
  815. "relativeURLS": 0,
  816. "shouldRunAutoprefixer": 0,
  817. "shouldRunBless": 0,
  818. "strictImports": 0,
  819. "strictMath": 0,
  820. "strictUnits": 0
  821. },
  822. "\/public\/ng\/less\/ui\/alert.less": {
  823. "allowInsecureImports": 0,
  824. "createSourceMap": 0,
  825. "disableJavascript": 0,
  826. "fileType": 1,
  827. "ieCompatibility": 1,
  828. "ignore": 1,
  829. "ignoreWasSetByUser": 0,
  830. "inputAbbreviatedPath": "\/public\/ng\/less\/ui\/alert.less",
  831. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/alert.css",
  832. "outputPathIsOutsideProject": 0,
  833. "outputPathIsSetByUser": 0,
  834. "outputStyle": 0,
  835. "relativeURLS": 0,
  836. "shouldRunAutoprefixer": 0,
  837. "shouldRunBless": 0,
  838. "strictImports": 0,
  839. "strictMath": 0,
  840. "strictUnits": 0
  841. },
  842. "\/public\/ng\/less\/ui\/bread.less": {
  843. "allowInsecureImports": 0,
  844. "createSourceMap": 0,
  845. "disableJavascript": 0,
  846. "fileType": 1,
  847. "ieCompatibility": 1,
  848. "ignore": 1,
  849. "ignoreWasSetByUser": 0,
  850. "inputAbbreviatedPath": "\/public\/ng\/less\/ui\/bread.less",
  851. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/bread.css",
  852. "outputPathIsOutsideProject": 0,
  853. "outputPathIsSetByUser": 0,
  854. "outputStyle": 0,
  855. "relativeURLS": 0,
  856. "shouldRunAutoprefixer": 0,
  857. "shouldRunBless": 0,
  858. "strictImports": 0,
  859. "strictMath": 0,
  860. "strictUnits": 0
  861. },
  862. "\/public\/ng\/less\/ui\/form.less": {
  863. "allowInsecureImports": 0,
  864. "createSourceMap": 0,
  865. "disableJavascript": 0,
  866. "fileType": 1,
  867. "ieCompatibility": 1,
  868. "ignore": 1,
  869. "ignoreWasSetByUser": 0,
  870. "inputAbbreviatedPath": "\/public\/ng\/less\/ui\/form.less",
  871. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/form.css",
  872. "outputPathIsOutsideProject": 0,
  873. "outputPathIsSetByUser": 0,
  874. "outputStyle": 0,
  875. "relativeURLS": 0,
  876. "shouldRunAutoprefixer": 0,
  877. "shouldRunBless": 0,
  878. "strictImports": 0,
  879. "strictMath": 0,
  880. "strictUnits": 0
  881. },
  882. "\/public\/ng\/less\/ui\/grid.less": {
  883. "allowInsecureImports": 0,
  884. "createSourceMap": 0,
  885. "disableJavascript": 0,
  886. "fileType": 1,
  887. "ieCompatibility": 1,
  888. "ignore": 1,
  889. "ignoreWasSetByUser": 0,
  890. "inputAbbreviatedPath": "\/public\/ng\/less\/ui\/grid.less",
  891. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/grid.css",
  892. "outputPathIsOutsideProject": 0,
  893. "outputPathIsSetByUser": 0,
  894. "outputStyle": 0,
  895. "relativeURLS": 0,
  896. "shouldRunAutoprefixer": 0,
  897. "shouldRunBless": 0,
  898. "strictImports": 0,
  899. "strictMath": 0,
  900. "strictUnits": 0
  901. },
  902. "\/public\/ng\/less\/ui\/label.less": {
  903. "allowInsecureImports": 0,
  904. "createSourceMap": 0,
  905. "disableJavascript": 0,
  906. "fileType": 1,
  907. "ieCompatibility": 1,
  908. "ignore": 1,
  909. "ignoreWasSetByUser": 0,
  910. "inputAbbreviatedPath": "\/public\/ng\/less\/ui\/label.less",
  911. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/label.css",
  912. "outputPathIsOutsideProject": 0,
  913. "outputPathIsSetByUser": 0,
  914. "outputStyle": 0,
  915. "relativeURLS": 0,
  916. "shouldRunAutoprefixer": 0,
  917. "shouldRunBless": 0,
  918. "strictImports": 0,
  919. "strictMath": 0,
  920. "strictUnits": 0
  921. },
  922. "\/public\/ng\/less\/ui\/menu.less": {
  923. "allowInsecureImports": 0,
  924. "createSourceMap": 0,
  925. "disableJavascript": 0,
  926. "fileType": 1,
  927. "ieCompatibility": 1,
  928. "ignore": 1,
  929. "ignoreWasSetByUser": 0,
  930. "inputAbbreviatedPath": "\/public\/ng\/less\/ui\/menu.less",
  931. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/menu.css",
  932. "outputPathIsOutsideProject": 0,
  933. "outputPathIsSetByUser": 0,
  934. "outputStyle": 0,
  935. "relativeURLS": 0,
  936. "shouldRunAutoprefixer": 0,
  937. "shouldRunBless": 0,
  938. "strictImports": 0,
  939. "strictMath": 0,
  940. "strictUnits": 0
  941. },
  942. "\/public\/ng\/less\/ui\/pager.less": {
  943. "allowInsecureImports": 0,
  944. "createSourceMap": 0,
  945. "disableJavascript": 0,
  946. "fileType": 1,
  947. "ieCompatibility": 1,
  948. "ignore": 1,
  949. "ignoreWasSetByUser": 0,
  950. "inputAbbreviatedPath": "\/public\/ng\/less\/ui\/pager.less",
  951. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/pager.css",
  952. "outputPathIsOutsideProject": 0,
  953. "outputPathIsSetByUser": 0,
  954. "outputStyle": 0,
  955. "relativeURLS": 0,
  956. "shouldRunAutoprefixer": 0,
  957. "shouldRunBless": 0,
  958. "strictImports": 0,
  959. "strictMath": 0,
  960. "strictUnits": 0
  961. },
  962. "\/public\/ng\/less\/ui\/panel.less": {
  963. "allowInsecureImports": 0,
  964. "createSourceMap": 0,
  965. "disableJavascript": 0,
  966. "fileType": 1,
  967. "ieCompatibility": 1,
  968. "ignore": 1,
  969. "ignoreWasSetByUser": 0,
  970. "inputAbbreviatedPath": "\/public\/ng\/less\/ui\/panel.less",
  971. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/panel.css",
  972. "outputPathIsOutsideProject": 0,
  973. "outputPathIsSetByUser": 0,
  974. "outputStyle": 0,
  975. "relativeURLS": 0,
  976. "shouldRunAutoprefixer": 0,
  977. "shouldRunBless": 0,
  978. "strictImports": 0,
  979. "strictMath": 0,
  980. "strictUnits": 0
  981. },
  982. "\/public\/ng\/less\/ui\/reset.less": {
  983. "allowInsecureImports": 0,
  984. "createSourceMap": 0,
  985. "disableJavascript": 0,
  986. "fileType": 1,
  987. "ieCompatibility": 1,
  988. "ignore": 1,
  989. "ignoreWasSetByUser": 0,
  990. "inputAbbreviatedPath": "\/public\/ng\/less\/ui\/reset.less",
  991. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/reset.css",
  992. "outputPathIsOutsideProject": 0,
  993. "outputPathIsSetByUser": 0,
  994. "outputStyle": 0,
  995. "relativeURLS": 0,
  996. "shouldRunAutoprefixer": 0,
  997. "shouldRunBless": 0,
  998. "strictImports": 0,
  999. "strictMath": 0,
  1000. "strictUnits": 0
  1001. },
  1002. "\/public\/ng\/less\/ui\/table.less": {
  1003. "allowInsecureImports": 0,
  1004. "createSourceMap": 0,
  1005. "disableJavascript": 0,
  1006. "fileType": 1,
  1007. "ieCompatibility": 1,
  1008. "ignore": 1,
  1009. "ignoreWasSetByUser": 0,
  1010. "inputAbbreviatedPath": "\/public\/ng\/less\/ui\/table.less",
  1011. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/table.css",
  1012. "outputPathIsOutsideProject": 0,
  1013. "outputPathIsSetByUser": 0,
  1014. "outputStyle": 0,
  1015. "relativeURLS": 0,
  1016. "shouldRunAutoprefixer": 0,
  1017. "shouldRunBless": 0,
  1018. "strictImports": 0,
  1019. "strictMath": 0,
  1020. "strictUnits": 0
  1021. },
  1022. "\/public\/ng\/less\/ui\/var.less": {
  1023. "allowInsecureImports": 0,
  1024. "createSourceMap": 0,
  1025. "disableJavascript": 0,
  1026. "fileType": 1,
  1027. "ieCompatibility": 1,
  1028. "ignore": 1,
  1029. "ignoreWasSetByUser": 0,
  1030. "inputAbbreviatedPath": "\/public\/ng\/less\/ui\/var.less",
  1031. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/var.css",
  1032. "outputPathIsOutsideProject": 0,
  1033. "outputPathIsSetByUser": 0,
  1034. "outputStyle": 0,
  1035. "relativeURLS": 0,
  1036. "shouldRunAutoprefixer": 0,
  1037. "shouldRunBless": 0,
  1038. "strictImports": 0,
  1039. "strictMath": 0,
  1040. "strictUnits": 0
  1041. },
  1042. "\/README.md": {
  1043. "criticStyle": 0,
  1044. "enableFootnotes": 0,
  1045. "enableLabels": 1,
  1046. "enableSmartQuotes": 1,
  1047. "escapeLineBreaks": 0,
  1048. "fileType": 4096,
  1049. "ignore": 1,
  1050. "ignoreWasSetByUser": 0,
  1051. "inputAbbreviatedPath": "\/README.md",
  1052. "maskEmailAddresses": 1,
  1053. "outputAbbreviatedPath": "\/README.html",
  1054. "outputFormat": 0,
  1055. "outputPathIsOutsideProject": 0,
  1056. "outputPathIsSetByUser": 0,
  1057. "outputStyle": 0,
  1058. "parseMetadata": 1,
  1059. "processHTML": 0,
  1060. "randomFootnoteNumbers": 0,
  1061. "useCompatibilityMode": 0
  1062. },
  1063. "\/README_ZH.md": {
  1064. "criticStyle": 0,
  1065. "enableFootnotes": 0,
  1066. "enableLabels": 1,
  1067. "enableSmartQuotes": 1,
  1068. "escapeLineBreaks": 0,
  1069. "fileType": 4096,
  1070. "ignore": 1,
  1071. "ignoreWasSetByUser": 0,
  1072. "inputAbbreviatedPath": "\/README_ZH.md",
  1073. "maskEmailAddresses": 1,
  1074. "outputAbbreviatedPath": "\/README_ZH.html",
  1075. "outputFormat": 0,
  1076. "outputPathIsOutsideProject": 0,
  1077. "outputPathIsSetByUser": 0,
  1078. "outputStyle": 0,
  1079. "parseMetadata": 1,
  1080. "processHTML": 0,
  1081. "randomFootnoteNumbers": 0,
  1082. "useCompatibilityMode": 0
  1083. }
  1084. },
  1085. "hooks": [
  1086. ],
  1087. "lastSavedByUser": "Jiahua Chen",
  1088. "manualImportLinks": {
  1089. },
  1090. "projectAttributes": {
  1091. "bowerAbbreviatedPath": "",
  1092. "displayValue": "gogs",
  1093. "displayValueWasSetByUser": 1,
  1094. "iconImageName": "compass_yellow"
  1095. },
  1096. "projectSettings": {
  1097. "alwaysUseExternalServer": 0,
  1098. "animateCSSInjections": 1,
  1099. "autoApplyPSLanguageSettingsStyle": 0,
  1100. "autoprefixerBrowserString": "> 1%, last 2 versions, Firefox ESR, Opera 12.1",
  1101. "autoSyncProjectSettingsFile": 1,
  1102. "browserRefreshDelay": 0,
  1103. "coffeeAutoOutputPathEnabled": 1,
  1104. "coffeeAutoOutputPathFilenamePattern": "*.js",
  1105. "coffeeAutoOutputPathRelativePath": "",
  1106. "coffeeAutoOutputPathReplace1": "",
  1107. "coffeeAutoOutputPathReplace2": "",
  1108. "coffeeAutoOutputPathStyle": 0,
  1109. "coffeeCreateSourceMap": 0,
  1110. "coffeeLintFlags2": {
  1111. "arrow_spacing": {
  1112. "active": 0,
  1113. "flagValue": -1
  1114. },
  1115. "camel_case_classes": {
  1116. "active": 1,
  1117. "flagValue": -1
  1118. },
  1119. "colon_assignment_spacing": {
  1120. "active": 0,
  1121. "flagValue": 1
  1122. },
  1123. "cyclomatic_complexity": {
  1124. "active": 0,
  1125. "flagValue": 10
  1126. },
  1127. "duplicate_key": {
  1128. "active": 1,
  1129. "flagValue": -1
  1130. },
  1131. "empty_constructor_needs_parens": {
  1132. "active": 0,
  1133. "flagValue": -1
  1134. },
  1135. "ensure_comprehensions": {
  1136. "active": 1,
  1137. "flagValue": -1
  1138. },
  1139. "indentation": {
  1140. "active": 1,
  1141. "flagValue": 2
  1142. },
  1143. "line_endings": {
  1144. "active": 0,
  1145. "flagValue": 0
  1146. },
  1147. "max_line_length": {
  1148. "active": 0,
  1149. "flagValue": 150
  1150. },
  1151. "missing_fat_arrows": {
  1152. "active": 0,
  1153. "flagValue": -1
  1154. },
  1155. "newlines_after_classes": {
  1156. "active": 0,
  1157. "flagValue": 3
  1158. },
  1159. "no_backticks": {
  1160. "active": 1,
  1161. "flagValue": -1
  1162. },
  1163. "no_debugger": {
  1164. "active": 1,
  1165. "flagValue": -1
  1166. },
  1167. "no_empty_functions": {
  1168. "active": 0,
  1169. "flagValue": -1
  1170. },
  1171. "no_empty_param_list": {
  1172. "active": 0,
  1173. "flagValue": -1
  1174. },
  1175. "no_implicit_braces": {
  1176. "active": 1,
  1177. "flagValue": -1
  1178. },
  1179. "no_implicit_parens": {
  1180. "active": 0,
  1181. "flagValue": -1
  1182. },
  1183. "no_interpolation_in_single_quotes": {
  1184. "active": 0,
  1185. "flagValue": -1
  1186. },
  1187. "no_plusplus": {
  1188. "active": 0,
  1189. "flagValue": -1
  1190. },
  1191. "no_stand_alone_at": {
  1192. "active": 1,
  1193. "flagValue": -1
  1194. },
  1195. "no_tabs": {
  1196. "active": 1,
  1197. "flagValue": -1
  1198. },
  1199. "no_throwing_strings": {
  1200. "active": 1,
  1201. "flagValue": -1
  1202. },
  1203. "no_trailing_semicolons": {
  1204. "active": 1,
  1205. "flagValue": -1
  1206. },
  1207. "no_trailing_whitespace": {
  1208. "active": 1,
  1209. "flagValue": -1
  1210. },
  1211. "no_unnecessary_double_quotes": {
  1212. "active": 0,
  1213. "flagValue": -1
  1214. },
  1215. "no_unnecessary_fat_arrows": {
  1216. "active": 1,
  1217. "flagValue": -1
  1218. },
  1219. "non_empty_constructor_needs_parens": {
  1220. "active": 0,
  1221. "flagValue": -1
  1222. },
  1223. "prefer_english_operator": {
  1224. "active": 0,
  1225. "flagValue": -1
  1226. },
  1227. "space_operators": {
  1228. "active": 0,
  1229. "flagValue": -1
  1230. },
  1231. "spacing_after_comma": {
  1232. "active": 1,
  1233. "flagValue": -1
  1234. }
  1235. },
  1236. "coffeeMinifyOutput": 1,
  1237. "coffeeOutputStyle": 0,
  1238. "coffeeSyntaxCheckerStyle": 1,
  1239. "externalServerAddress": "http:\/\/localhost:8888",
  1240. "externalServerPreviewPathAddition": "",
  1241. "genericWebpageFileExtensionsString": "html, htm, shtml, shtm, xhtml, php, jsp, asp, aspx, erb, ctp",
  1242. "hamlAutoOutputPathEnabled": 1,
  1243. "hamlAutoOutputPathFilenamePattern": "*.html",
  1244. "hamlAutoOutputPathRelativePath": "",
  1245. "hamlAutoOutputPathReplace1": "",
  1246. "hamlAutoOutputPathReplace2": "",
  1247. "hamlAutoOutputPathStyle": 0,
  1248. "hamlEscapeHTMLCharacters": 0,
  1249. "hamlNoEscapeInAttributes": 0,
  1250. "hamlOutputFormat": 2,
  1251. "hamlOutputStyle": 0,
  1252. "hamlUseCDATA": 0,
  1253. "hamlUseDoubleQuotes": 0,
  1254. "hamlUseUnixNewlines": 0,
  1255. "jadeAutoOutputPathEnabled": 1,
  1256. "jadeAutoOutputPathFilenamePattern": "*.html",
  1257. "jadeAutoOutputPathRelativePath": "",
  1258. "jadeAutoOutputPathReplace1": "",
  1259. "jadeAutoOutputPathReplace2": "",
  1260. "jadeAutoOutputPathStyle": 0,
  1261. "jadeCompileDebug": 1,
  1262. "jadeOutputStyle": 0,
  1263. "javascriptAutoOutputPathEnabled": 1,
  1264. "javascriptAutoOutputPathFilenamePattern": "*-min.js",
  1265. "javascriptAutoOutputPathRelativePath": "\/min",
  1266. "javascriptAutoOutputPathReplace1": "",
  1267. "javascriptAutoOutputPathReplace2": "",
  1268. "javascriptAutoOutputPathStyle": 2,
  1269. "javascriptCreateSourceMap": 1,
  1270. "javascriptOutputStyle": 1,
  1271. "javascriptSyntaxCheckerStyle": 1,
  1272. "jsCheckerReservedNamesString": "",
  1273. "jsHintFlags2": {
  1274. "asi": {
  1275. "active": 0,
  1276. "flagValue": -1
  1277. },
  1278. "bitwise": {
  1279. "active": 1,
  1280. "flagValue": -1
  1281. },
  1282. "boss": {
  1283. "active": 0,
  1284. "flagValue": -1
  1285. },
  1286. "browser": {
  1287. "active": 1,
  1288. "flagValue": -1
  1289. },
  1290. "browserify": {
  1291. "active": 0,
  1292. "flagValue": -1
  1293. },
  1294. "camelcase": {
  1295. "active": 0,
  1296. "flagValue": -1
  1297. },
  1298. "couch": {
  1299. "active": 0,
  1300. "flagValue": -1
  1301. },
  1302. "curly": {
  1303. "active": 1,
  1304. "flagValue": -1
  1305. },
  1306. "debug": {
  1307. "active": 0,
  1308. "flagValue": -1
  1309. },
  1310. "devel": {
  1311. "active": 0,
  1312. "flagValue": -1
  1313. },
  1314. "dojo": {
  1315. "active": 0,
  1316. "flagValue": -1
  1317. },
  1318. "elision": {
  1319. "active": 1,
  1320. "flagValue": -1
  1321. },
  1322. "eqeqeq": {
  1323. "active": 1,
  1324. "flagValue": -1
  1325. },
  1326. "eqnull": {
  1327. "active": 0,
  1328. "flagValue": -1
  1329. },
  1330. "es3": {
  1331. "active": 0,
  1332. "flagValue": -1
  1333. },
  1334. "esnext": {
  1335. "active": 0,
  1336. "flagValue": -1
  1337. },
  1338. "evil": {
  1339. "active": 1,
  1340. "flagValue": -1
  1341. },
  1342. "expr": {
  1343. "active": 0,
  1344. "flagValue": -1
  1345. },
  1346. "forin": {
  1347. "active": 0,
  1348. "flagValue": -1
  1349. },
  1350. "freeze": {
  1351. "active": 1,
  1352. "flagValue": -1
  1353. },
  1354. "funcscope": {
  1355. "active": 0,
  1356. "flagValue": -1
  1357. },
  1358. "futurehostile": {
  1359. "active": 0,
  1360. "flagValue": -1
  1361. },
  1362. "globalstrict": {
  1363. "active": 0,
  1364. "flagValue": -1
  1365. },
  1366. "immed": {
  1367. "active": 0,
  1368. "flagValue": -1
  1369. },
  1370. "indent": {
  1371. "active": 0,
  1372. "flagValue": 4
  1373. },
  1374. "iterator": {
  1375. "active": 0,
  1376. "flagValue": -1
  1377. },
  1378. "jasmine": {
  1379. "active": 0,
  1380. "flagValue": -1
  1381. },
  1382. "jquery": {
  1383. "active": 1,
  1384. "flagValue": -1
  1385. },
  1386. "lastsemic": {
  1387. "active": 0,
  1388. "flagValue": -1
  1389. },
  1390. "latedef": {
  1391. "active": 1,
  1392. "flagValue": -1
  1393. },
  1394. "laxbreak": {
  1395. "active": 0,
  1396. "flagValue": -1
  1397. },
  1398. "laxcomma": {
  1399. "active": 0,
  1400. "flagValue": -1
  1401. },
  1402. "loopfunc": {
  1403. "active": 0,
  1404. "flagValue": -1
  1405. },
  1406. "maxcomplexity": {
  1407. "active": 0,
  1408. "flagValue": 10
  1409. },
  1410. "maxdepth": {
  1411. "active": 0,
  1412. "flagValue": 3
  1413. },
  1414. "maxlen": {
  1415. "active": 0,
  1416. "flagValue": 150
  1417. },
  1418. "maxparams": {
  1419. "active": 0,
  1420. "flagValue": 3
  1421. },
  1422. "maxstatements": {
  1423. "active": 0,
  1424. "flagValue": 4
  1425. },
  1426. "mocha": {
  1427. "active": 0,
  1428. "flagValue": -1
  1429. },
  1430. "mootools": {
  1431. "active": 0,
  1432. "flagValue": -1
  1433. },
  1434. "moz": {
  1435. "active": 0,
  1436. "flagValue": -1
  1437. },
  1438. "multistr": {
  1439. "active": 0,
  1440. "flagValue": -1
  1441. },
  1442. "newcap": {
  1443. "active": 1,
  1444. "flagValue": -1
  1445. },
  1446. "noarg": {
  1447. "active": 1,
  1448. "flagValue": -1
  1449. },
  1450. "nocomma": {
  1451. "active": 0,
  1452. "flagValue": -1
  1453. },
  1454. "node": {
  1455. "active": 0,
  1456. "flagValue": -1
  1457. },
  1458. "noempty": {
  1459. "active": 0,
  1460. "flagValue": -1
  1461. },
  1462. "nonbsp": {
  1463. "active": 0,
  1464. "flagValue": -1
  1465. },
  1466. "nonew": {
  1467. "active": 1,
  1468. "flagValue": -1
  1469. },
  1470. "nonstandard": {
  1471. "active": 0,
  1472. "flagValue": -1
  1473. },
  1474. "notypeof": {
  1475. "active": 1,
  1476. "flagValue": -1
  1477. },
  1478. "noyield": {
  1479. "active": 0,
  1480. "flagValue": -1
  1481. },
  1482. "onecase": {
  1483. "active": 0,
  1484. "flagValue": -1
  1485. },
  1486. "phantom": {
  1487. "active": 0,
  1488. "flagValue": -1
  1489. },
  1490. "plusplus": {
  1491. "active": 0,
  1492. "flagValue": -1
  1493. },
  1494. "proto": {
  1495. "active": 0,
  1496. "flagValue": -1
  1497. },
  1498. "prototypejs": {
  1499. "active": 0,
  1500. "flagValue": -1
  1501. },
  1502. "qunit": {
  1503. "active": 0,
  1504. "flagValue": -1
  1505. },
  1506. "regexp": {
  1507. "active": 1,
  1508. "flagValue": -1
  1509. },
  1510. "rhino": {
  1511. "active": 0,
  1512. "flagValue": -1
  1513. },
  1514. "scripturl": {
  1515. "active": 0,
  1516. "flagValue": -1
  1517. },
  1518. "shadow": {
  1519. "active": 0,
  1520. "flagValue": -1
  1521. },
  1522. "shelljs": {
  1523. "active": 0,
  1524. "flagValue": -1
  1525. },
  1526. "singleGroups": {
  1527. "active": 0,
  1528. "flagValue": -1
  1529. },
  1530. "strict": {
  1531. "active": 0,
  1532. "flagValue": -1
  1533. },
  1534. "sub": {
  1535. "active": 0,
  1536. "flagValue": -1
  1537. },
  1538. "supernew": {
  1539. "active": 0,
  1540. "flagValue": -1
  1541. },
  1542. "typed": {
  1543. "active": 0,
  1544. "flagValue": -1
  1545. },
  1546. "undef": {
  1547. "active": 1,
  1548. "flagValue": -1
  1549. },
  1550. "unused": {
  1551. "active": 1,
  1552. "flagValue": -1
  1553. },
  1554. "varstmt": {
  1555. "active": 0,
  1556. "flagValue": -1
  1557. },
  1558. "withstmt": {
  1559. "active": 0,
  1560. "flagValue": -1
  1561. },
  1562. "worker": {
  1563. "active": 0,
  1564. "flagValue": -1
  1565. },
  1566. "wsh": {
  1567. "active": 0,
  1568. "flagValue": -1
  1569. },
  1570. "yui": {
  1571. "active": 0,
  1572. "flagValue": -1
  1573. }
  1574. },
  1575. "jsLintFlags2": {
  1576. "bitwise": {
  1577. "active": 0,
  1578. "flagValue": -1
  1579. },
  1580. "browser": {
  1581. "active": 1,
  1582. "flagValue": -1
  1583. },
  1584. "couch": {
  1585. "active": 0,
  1586. "flagValue": -1
  1587. },
  1588. "devel": {
  1589. "active": 0,
  1590. "flagValue": -1
  1591. },
  1592. "es6": {
  1593. "active": 0,
  1594. "flagValue": -1
  1595. },
  1596. "eval": {
  1597. "active": 0,
  1598. "flagValue": -1
  1599. },
  1600. "for": {
  1601. "active": 0,
  1602. "flagValue": -1
  1603. },
  1604. "maxlen": {
  1605. "active": 0,
  1606. "flagValue": 150
  1607. },
  1608. "node": {
  1609. "active": 0,
  1610. "flagValue": -1
  1611. },
  1612. "this": {
  1613. "active": 0,
  1614. "flagValue": -1
  1615. },
  1616. "white": {
  1617. "active": 0,
  1618. "flagValue": -1
  1619. }
  1620. },
  1621. "jsonAutoOutputPathEnabled": 0,
  1622. "jsonAutoOutputPathFilenamePattern": "*-min.json",
  1623. "jsonAutoOutputPathRelativePath": "",
  1624. "jsonAutoOutputPathReplace1": "",
  1625. "jsonAutoOutputPathReplace2": "",
  1626. "jsonAutoOutputPathStyle": 0,
  1627. "jsonOrderOutput": 0,
  1628. "jsonOutputStyle": 1,
  1629. "kitAutoOutputPathEnabled": 1,
  1630. "kitAutoOutputPathFilenamePattern": "*.html",
  1631. "kitAutoOutputPathRelativePath": "",
  1632. "kitAutoOutputPathReplace1": "",
  1633. "kitAutoOutputPathReplace2": "",
  1634. "kitAutoOutputPathStyle": 0,
  1635. "lessAllowInsecureImports": 0,
  1636. "lessAutoOutputPathEnabled": 1,
  1637. "lessAutoOutputPathFilenamePattern": "*.css",
  1638. "lessAutoOutputPathRelativePath": "..\/css",
  1639. "lessAutoOutputPathReplace1": "less",
  1640. "lessAutoOutputPathReplace2": "css",
  1641. "lessAutoOutputPathStyle": 2,
  1642. "lessCreateSourceMap": 0,
  1643. "lessDisableJavascript": 0,
  1644. "lessIeCompatibility": 1,
  1645. "lessOutputStyle": 0,
  1646. "lessRelativeURLS": 0,
  1647. "lessStrictImports": 0,
  1648. "lessStrictMath": 0,
  1649. "lessStrictUnits": 0,
  1650. "markdownAutoOutputPathEnabled": 0,
  1651. "markdownAutoOutputPathFilenamePattern": "*.html",
  1652. "markdownAutoOutputPathRelativePath": "",
  1653. "markdownAutoOutputPathReplace1": "",
  1654. "markdownAutoOutputPathReplace2": "",
  1655. "markdownAutoOutputPathStyle": 0,
  1656. "markdownCriticStyle": 0,
  1657. "markdownEnableFootnotes": 0,
  1658. "markdownEnableLabels": 1,
  1659. "markdownEnableSmartQuotes": 1,
  1660. "markdownEscapeLineBreaks": 0,
  1661. "markdownMaskEmailAddresses": 1,
  1662. "markdownOutputFormat": 0,
  1663. "markdownOutputStyle": 0,
  1664. "markdownParseMetadata": 1,
  1665. "markdownProcessHTML": 0,
  1666. "markdownRandomFootnoteNumbers": 0,
  1667. "markdownUseCompatibilityMode": 0,
  1668. "reloadFileURLs": 0,
  1669. "sassAutoOutputPathEnabled": 1,
  1670. "sassAutoOutputPathFilenamePattern": "*.css",
  1671. "sassAutoOutputPathRelativePath": "..\/css",
  1672. "sassAutoOutputPathReplace1": "sass",
  1673. "sassAutoOutputPathReplace2": "css",
  1674. "sassAutoOutputPathStyle": 2,
  1675. "sassCreateSourceMap": 0,
  1676. "sassDebugStyle": 0,
  1677. "sassDecimalPrecision": 5,
  1678. "sassOutputStyle": 0,
  1679. "sassUseLibsass": 0,
  1680. "shouldRunAutoprefixer": 0,
  1681. "shouldRunBless": 0,
  1682. "skippedItemsString": "_cache, logs, _logs, cache, \/public\/js\/lib, .git, \/public\/js, log, .svn, .hg",
  1683. "slimAutoOutputPathEnabled": 1,
  1684. "slimAutoOutputPathFilenamePattern": "*.html",
  1685. "slimAutoOutputPathRelativePath": "",
  1686. "slimAutoOutputPathReplace1": "",
  1687. "slimAutoOutputPathReplace2": "",
  1688. "slimAutoOutputPathStyle": 0,
  1689. "slimCompileOnly": 0,
  1690. "slimLogicless": 0,
  1691. "slimOutputFormat": 0,
  1692. "slimOutputStyle": 1,
  1693. "slimRailsCompatible": 0,
  1694. "stylusAutoOutputPathEnabled": 1,
  1695. "stylusAutoOutputPathFilenamePattern": "*.css",
  1696. "stylusAutoOutputPathRelativePath": "..\/css",
  1697. "stylusAutoOutputPathReplace1": "stylus",
  1698. "stylusAutoOutputPathReplace2": "css",
  1699. "stylusAutoOutputPathStyle": 2,
  1700. "stylusCreateSourceMap": 0,
  1701. "stylusDebugStyle": 0,
  1702. "stylusImportCSS": 0,
  1703. "stylusOutputStyle": 0,
  1704. "stylusResolveRelativeURLS": 0,
  1705. "typescriptAutoOutputPathEnabled": 1,
  1706. "typescriptAutoOutputPathFilenamePattern": "*.js",
  1707. "typescriptAutoOutputPathRelativePath": "\/js",
  1708. "typescriptAutoOutputPathReplace1": "",
  1709. "typescriptAutoOutputPathReplace2": "",
  1710. "typescriptAutoOutputPathStyle": 2,
  1711. "typescriptCreateDeclarationFile": 0,
  1712. "typescriptCreateSourceMap": 0,
  1713. "typescriptMinifyOutput": 0,
  1714. "typescriptModuleType": 0,
  1715. "typescriptNoImplicitAny": 0,
  1716. "typescriptPreserveConstEnums": 0,
  1717. "typescriptRemoveComments": 0,
  1718. "typescriptSuppressImplicitAnyIndexErrors": 0,
  1719. "typescriptTargetECMAVersion": 0,
  1720. "uglifyDefinesString": "",
  1721. "uglifyFlags2": {
  1722. "ascii-only": {
  1723. "active": 0,
  1724. "flagValue": -1
  1725. },
  1726. "bare-returns": {
  1727. "active": 0,
  1728. "flagValue": -1
  1729. },
  1730. "booleans": {
  1731. "active": 1,
  1732. "flagValue": -1
  1733. },
  1734. "bracketize": {
  1735. "active": 0,
  1736. "flagValue": -1
  1737. },
  1738. "cascade": {
  1739. "active": 1,
  1740. "flagValue": -1
  1741. },
  1742. "comments": {
  1743. "active": 1,
  1744. "flagValue": -1
  1745. },
  1746. "comparisons": {
  1747. "active": 1,
  1748. "flagValue": -1
  1749. },
  1750. "compress": {
  1751. "active": 1,
  1752. "flagValue": -1
  1753. },
  1754. "conditionals": {
  1755. "active": 1,
  1756. "flagValue": -1
  1757. },
  1758. "dead_code": {
  1759. "active": 0,
  1760. "flagValue": -1
  1761. },
  1762. "drop_console": {
  1763. "active": 0,
  1764. "flagValue": -1
  1765. },
  1766. "drop_debugger": {
  1767. "active": 1,
  1768. "flagValue": -1
  1769. },
  1770. "eval": {
  1771. "active": 0,
  1772. "flagValue": -1
  1773. },
  1774. "evaluate": {
  1775. "active": 1,
  1776. "flagValue": -1
  1777. },
  1778. "hoist_funs": {
  1779. "active": 1,
  1780. "flagValue": -1
  1781. },
  1782. "hoist_vars": {
  1783. "active": 0,
  1784. "flagValue": -1
  1785. },
  1786. "if_return": {
  1787. "active": 1,
  1788. "flagValue": -1
  1789. },
  1790. "indent-level": {
  1791. "active": 0,
  1792. "flagValue": 4
  1793. },
  1794. "indent-start": {
  1795. "active": 0,
  1796. "flagValue": 0
  1797. },
  1798. "inline-script": {
  1799. "active": 0,
  1800. "flagValue": -1
  1801. },
  1802. "join_vars": {
  1803. "active": 1,
  1804. "flagValue": -1
  1805. },
  1806. "keep_fargs": {
  1807. "active": 0,
  1808. "flagValue": -1
  1809. },
  1810. "keep_fnames": {
  1811. "active": 0,
  1812. "flagValue": -1
  1813. },
  1814. "loops": {
  1815. "active": 1,
  1816. "flagValue": -1
  1817. },
  1818. "mangle": {
  1819. "active": 1,
  1820. "flagValue": -1
  1821. },
  1822. "max-line-len": {
  1823. "active": 1,
  1824. "flagValue": 32000
  1825. },
  1826. "negate_iife": {
  1827. "active": 1,
  1828. "flagValue": -1
  1829. },
  1830. "properties": {
  1831. "active": 1,
  1832. "flagValue": -1
  1833. },
  1834. "pure_getters": {
  1835. "active": 0,
  1836. "flagValue": -1
  1837. },
  1838. "quote-keys": {
  1839. "active": 0,
  1840. "flagValue": -1
  1841. },
  1842. "screw-ie8": {
  1843. "active": 0,
  1844. "flagValue": -1
  1845. },
  1846. "semicolons": {
  1847. "active": 1,
  1848. "flagValue": -1
  1849. },
  1850. "sequences": {
  1851. "active": 1,
  1852. "flagValue": -1
  1853. },
  1854. "sort": {
  1855. "active": 0,
  1856. "flagValue": -1
  1857. },
  1858. "space-colon": {
  1859. "active": 1,
  1860. "flagValue": -1
  1861. },
  1862. "toplevel": {
  1863. "active": 0,
  1864. "flagValue": -1
  1865. },
  1866. "unsafe": {
  1867. "active": 0,
  1868. "flagValue": -1
  1869. },
  1870. "unused": {
  1871. "active": 0,
  1872. "flagValue": -1
  1873. },
  1874. "warnings": {
  1875. "active": 0,
  1876. "flagValue": -1
  1877. },
  1878. "width": {
  1879. "active": 1,
  1880. "flagValue": 80
  1881. }
  1882. },
  1883. "uglifyReservedNamesString": "$",
  1884. "websiteRelativeRoot": ""
  1885. },
  1886. "settingsFileVersion": "2"
  1887. }