config.codekit 45 KB

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