config.codekit 45 KB

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