config.codekit 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956
  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-large-resize.png": {
  166. "fileType": 32768,
  167. "ignore": 0,
  168. "ignoreWasSetByUser": 0,
  169. "initialSize": 54978,
  170. "inputAbbreviatedPath": "\/public\/img\/gogs-large-resize.png",
  171. "outputAbbreviatedPath": "\/public\/img\/gogs-large-resize.png",
  172. "outputPathIsOutsideProject": 0,
  173. "outputPathIsSetByUser": 0,
  174. "processed": 0
  175. },
  176. "\/public\/img\/gogs-lg.png": {
  177. "fileType": 32768,
  178. "ignore": 0,
  179. "ignoreWasSetByUser": 0,
  180. "initialSize": 97926,
  181. "inputAbbreviatedPath": "\/public\/img\/gogs-lg.png",
  182. "outputAbbreviatedPath": "\/public\/img\/gogs-lg.png",
  183. "outputPathIsOutsideProject": 0,
  184. "outputPathIsSetByUser": 0,
  185. "processed": 1
  186. },
  187. "\/public\/img\/slack.png": {
  188. "fileType": 32768,
  189. "ignore": 0,
  190. "ignoreWasSetByUser": 0,
  191. "initialSize": 1633,
  192. "inputAbbreviatedPath": "\/public\/img\/slack.png",
  193. "outputAbbreviatedPath": "\/public\/img\/slack.png",
  194. "outputPathIsOutsideProject": 0,
  195. "outputPathIsSetByUser": 0,
  196. "processed": 0
  197. },
  198. "\/public\/less\/_admin.less": {
  199. "allowInsecureImports": 0,
  200. "createSourceMap": 0,
  201. "disableJavascript": 0,
  202. "fileType": 1,
  203. "ieCompatibility": 1,
  204. "ignore": 1,
  205. "ignoreWasSetByUser": 0,
  206. "inputAbbreviatedPath": "\/public\/less\/_admin.less",
  207. "outputAbbreviatedPath": "\/public\/css\/_admin.css",
  208. "outputPathIsOutsideProject": 0,
  209. "outputPathIsSetByUser": 0,
  210. "outputStyle": 0,
  211. "relativeURLS": 0,
  212. "shouldRunAutoprefixer": 0,
  213. "shouldRunBless": 0,
  214. "strictImports": 0,
  215. "strictMath": 0,
  216. "strictUnits": 0
  217. },
  218. "\/public\/less\/_base.less": {
  219. "allowInsecureImports": 0,
  220. "createSourceMap": 0,
  221. "disableJavascript": 0,
  222. "fileType": 1,
  223. "ieCompatibility": 1,
  224. "ignore": 1,
  225. "ignoreWasSetByUser": 0,
  226. "inputAbbreviatedPath": "\/public\/less\/_base.less",
  227. "outputAbbreviatedPath": "\/public\/css\/_base.css",
  228. "outputPathIsOutsideProject": 0,
  229. "outputPathIsSetByUser": 0,
  230. "outputStyle": 0,
  231. "relativeURLS": 0,
  232. "shouldRunAutoprefixer": 0,
  233. "shouldRunBless": 0,
  234. "strictImports": 0,
  235. "strictMath": 0,
  236. "strictUnits": 0
  237. },
  238. "\/public\/less\/_dashboard.less": {
  239. "allowInsecureImports": 0,
  240. "createSourceMap": 0,
  241. "disableJavascript": 0,
  242. "fileType": 1,
  243. "ieCompatibility": 1,
  244. "ignore": 1,
  245. "ignoreWasSetByUser": 0,
  246. "inputAbbreviatedPath": "\/public\/less\/_dashboard.less",
  247. "outputAbbreviatedPath": "\/public\/css\/_dashboard.css",
  248. "outputPathIsOutsideProject": 0,
  249. "outputPathIsSetByUser": 0,
  250. "outputStyle": 0,
  251. "relativeURLS": 0,
  252. "shouldRunAutoprefixer": 0,
  253. "shouldRunBless": 0,
  254. "strictImports": 0,
  255. "strictMath": 0,
  256. "strictUnits": 0
  257. },
  258. "\/public\/less\/_emojify.less": {
  259. "allowInsecureImports": 0,
  260. "createSourceMap": 0,
  261. "disableJavascript": 0,
  262. "fileType": 1,
  263. "ieCompatibility": 1,
  264. "ignore": 1,
  265. "ignoreWasSetByUser": 0,
  266. "inputAbbreviatedPath": "\/public\/less\/_emojify.less",
  267. "outputAbbreviatedPath": "\/public\/css\/_emojify.css",
  268. "outputPathIsOutsideProject": 0,
  269. "outputPathIsSetByUser": 0,
  270. "outputStyle": 0,
  271. "relativeURLS": 0,
  272. "shouldRunAutoprefixer": 0,
  273. "shouldRunBless": 0,
  274. "strictImports": 0,
  275. "strictMath": 0,
  276. "strictUnits": 0
  277. },
  278. "\/public\/less\/_explore.less": {
  279. "allowInsecureImports": 0,
  280. "createSourceMap": 0,
  281. "disableJavascript": 0,
  282. "fileType": 1,
  283. "ieCompatibility": 1,
  284. "ignore": 1,
  285. "ignoreWasSetByUser": 0,
  286. "inputAbbreviatedPath": "\/public\/less\/_explore.less",
  287. "outputAbbreviatedPath": "\/public\/css\/_explore.css",
  288. "outputPathIsOutsideProject": 0,
  289. "outputPathIsSetByUser": 0,
  290. "outputStyle": 0,
  291. "relativeURLS": 0,
  292. "shouldRunAutoprefixer": 0,
  293. "shouldRunBless": 0,
  294. "strictImports": 0,
  295. "strictMath": 0,
  296. "strictUnits": 0
  297. },
  298. "\/public\/less\/_form.less": {
  299. "allowInsecureImports": 0,
  300. "createSourceMap": 0,
  301. "disableJavascript": 0,
  302. "fileType": 1,
  303. "ieCompatibility": 1,
  304. "ignore": 1,
  305. "ignoreWasSetByUser": 0,
  306. "inputAbbreviatedPath": "\/public\/less\/_form.less",
  307. "outputAbbreviatedPath": "\/public\/css\/_form.css",
  308. "outputPathIsOutsideProject": 0,
  309. "outputPathIsSetByUser": 0,
  310. "outputStyle": 0,
  311. "relativeURLS": 0,
  312. "shouldRunAutoprefixer": 0,
  313. "shouldRunBless": 0,
  314. "strictImports": 0,
  315. "strictMath": 0,
  316. "strictUnits": 0
  317. },
  318. "\/public\/less\/_home.less": {
  319. "allowInsecureImports": 0,
  320. "createSourceMap": 0,
  321. "disableJavascript": 0,
  322. "fileType": 1,
  323. "ieCompatibility": 1,
  324. "ignore": 1,
  325. "ignoreWasSetByUser": 0,
  326. "inputAbbreviatedPath": "\/public\/less\/_home.less",
  327. "outputAbbreviatedPath": "\/public\/css\/_home.css",
  328. "outputPathIsOutsideProject": 0,
  329. "outputPathIsSetByUser": 0,
  330. "outputStyle": 0,
  331. "relativeURLS": 0,
  332. "shouldRunAutoprefixer": 0,
  333. "shouldRunBless": 0,
  334. "strictImports": 0,
  335. "strictMath": 0,
  336. "strictUnits": 0
  337. },
  338. "\/public\/less\/_install.less": {
  339. "allowInsecureImports": 0,
  340. "createSourceMap": 0,
  341. "disableJavascript": 0,
  342. "fileType": 1,
  343. "ieCompatibility": 1,
  344. "ignore": 1,
  345. "ignoreWasSetByUser": 0,
  346. "inputAbbreviatedPath": "\/public\/less\/_install.less",
  347. "outputAbbreviatedPath": "\/public\/css\/_install.css",
  348. "outputPathIsOutsideProject": 0,
  349. "outputPathIsSetByUser": 0,
  350. "outputStyle": 0,
  351. "relativeURLS": 0,
  352. "shouldRunAutoprefixer": 0,
  353. "shouldRunBless": 0,
  354. "strictImports": 0,
  355. "strictMath": 0,
  356. "strictUnits": 0
  357. },
  358. "\/public\/less\/_markdown.less": {
  359. "allowInsecureImports": 0,
  360. "createSourceMap": 0,
  361. "disableJavascript": 0,
  362. "fileType": 1,
  363. "ieCompatibility": 1,
  364. "ignore": 1,
  365. "ignoreWasSetByUser": 0,
  366. "inputAbbreviatedPath": "\/public\/less\/_markdown.less",
  367. "outputAbbreviatedPath": "\/public\/css\/_markdown.css",
  368. "outputPathIsOutsideProject": 0,
  369. "outputPathIsSetByUser": 0,
  370. "outputStyle": 0,
  371. "relativeURLS": 0,
  372. "shouldRunAutoprefixer": 0,
  373. "shouldRunBless": 0,
  374. "strictImports": 0,
  375. "strictMath": 0,
  376. "strictUnits": 0
  377. },
  378. "\/public\/less\/_octicons.less": {
  379. "allowInsecureImports": 0,
  380. "createSourceMap": 0,
  381. "disableJavascript": 0,
  382. "fileType": 1,
  383. "ieCompatibility": 1,
  384. "ignore": 1,
  385. "ignoreWasSetByUser": 0,
  386. "inputAbbreviatedPath": "\/public\/less\/_octicons.less",
  387. "outputAbbreviatedPath": "\/public\/css\/_octicons.css",
  388. "outputPathIsOutsideProject": 0,
  389. "outputPathIsSetByUser": 0,
  390. "outputStyle": 0,
  391. "relativeURLS": 0,
  392. "shouldRunAutoprefixer": 0,
  393. "shouldRunBless": 0,
  394. "strictImports": 0,
  395. "strictMath": 0,
  396. "strictUnits": 0
  397. },
  398. "\/public\/less\/_organization.less": {
  399. "allowInsecureImports": 0,
  400. "createSourceMap": 0,
  401. "disableJavascript": 0,
  402. "fileType": 1,
  403. "ieCompatibility": 1,
  404. "ignore": 1,
  405. "ignoreWasSetByUser": 0,
  406. "inputAbbreviatedPath": "\/public\/less\/_organization.less",
  407. "outputAbbreviatedPath": "\/public\/css\/_organization.css",
  408. "outputPathIsOutsideProject": 0,
  409. "outputPathIsSetByUser": 0,
  410. "outputStyle": 0,
  411. "relativeURLS": 0,
  412. "shouldRunAutoprefixer": 0,
  413. "shouldRunBless": 0,
  414. "strictImports": 0,
  415. "strictMath": 0,
  416. "strictUnits": 0
  417. },
  418. "\/public\/less\/_repository.less": {
  419. "allowInsecureImports": 0,
  420. "createSourceMap": 0,
  421. "disableJavascript": 0,
  422. "fileType": 1,
  423. "ieCompatibility": 1,
  424. "ignore": 1,
  425. "ignoreWasSetByUser": 0,
  426. "inputAbbreviatedPath": "\/public\/less\/_repository.less",
  427. "outputAbbreviatedPath": "\/public\/css\/_repository.css",
  428. "outputPathIsOutsideProject": 0,
  429. "outputPathIsSetByUser": 0,
  430. "outputStyle": 0,
  431. "relativeURLS": 0,
  432. "shouldRunAutoprefixer": 0,
  433. "shouldRunBless": 0,
  434. "strictImports": 0,
  435. "strictMath": 0,
  436. "strictUnits": 0
  437. },
  438. "\/public\/less\/_user.less": {
  439. "allowInsecureImports": 0,
  440. "createSourceMap": 0,
  441. "disableJavascript": 0,
  442. "fileType": 1,
  443. "ieCompatibility": 1,
  444. "ignore": 1,
  445. "ignoreWasSetByUser": 0,
  446. "inputAbbreviatedPath": "\/public\/less\/_user.less",
  447. "outputAbbreviatedPath": "\/public\/css\/_user.css",
  448. "outputPathIsOutsideProject": 0,
  449. "outputPathIsSetByUser": 0,
  450. "outputStyle": 0,
  451. "relativeURLS": 0,
  452. "shouldRunAutoprefixer": 0,
  453. "shouldRunBless": 0,
  454. "strictImports": 0,
  455. "strictMath": 0,
  456. "strictUnits": 0
  457. },
  458. "\/public\/less\/gogs.less": {
  459. "allowInsecureImports": 0,
  460. "createSourceMap": 0,
  461. "disableJavascript": 0,
  462. "fileType": 1,
  463. "ieCompatibility": 1,
  464. "ignore": 0,
  465. "ignoreWasSetByUser": 0,
  466. "inputAbbreviatedPath": "\/public\/less\/gogs.less",
  467. "outputAbbreviatedPath": "\/public\/css\/gogs.min.css",
  468. "outputPathIsOutsideProject": 0,
  469. "outputPathIsSetByUser": 1,
  470. "outputStyle": 1,
  471. "relativeURLS": 0,
  472. "shouldRunAutoprefixer": 0,
  473. "shouldRunBless": 0,
  474. "strictImports": 0,
  475. "strictMath": 0,
  476. "strictUnits": 0
  477. },
  478. "\/public\/ng\/css\/font-awesome.min.css": {
  479. "fileType": 16,
  480. "ignore": 0,
  481. "ignoreWasSetByUser": 0,
  482. "inputAbbreviatedPath": "\/public\/ng\/css\/font-awesome.min.css",
  483. "outputAbbreviatedPath": "No Output Path",
  484. "outputPathIsOutsideProject": 0,
  485. "outputPathIsSetByUser": 0
  486. },
  487. "\/public\/ng\/css\/gogs.css": {
  488. "fileType": 16,
  489. "ignore": 1,
  490. "ignoreWasSetByUser": 0,
  491. "inputAbbreviatedPath": "\/public\/ng\/css\/gogs.css",
  492. "outputAbbreviatedPath": "No Output Path",
  493. "outputPathIsOutsideProject": 0,
  494. "outputPathIsSetByUser": 0
  495. },
  496. "\/public\/ng\/css\/magnific-popup.css": {
  497. "fileType": 16,
  498. "ignore": 0,
  499. "ignoreWasSetByUser": 0,
  500. "inputAbbreviatedPath": "\/public\/ng\/css\/magnific-popup.css",
  501. "outputAbbreviatedPath": "No Output Path",
  502. "outputPathIsOutsideProject": 0,
  503. "outputPathIsSetByUser": 0
  504. },
  505. "\/public\/ng\/css\/tipsy.css": {
  506. "fileType": 16,
  507. "ignore": 0,
  508. "ignoreWasSetByUser": 0,
  509. "inputAbbreviatedPath": "\/public\/ng\/css\/tipsy.css",
  510. "outputAbbreviatedPath": "No Output Path",
  511. "outputPathIsOutsideProject": 0,
  512. "outputPathIsSetByUser": 0
  513. },
  514. "\/public\/ng\/css\/ui.css": {
  515. "fileType": 16,
  516. "ignore": 1,
  517. "ignoreWasSetByUser": 0,
  518. "inputAbbreviatedPath": "\/public\/ng\/css\/ui.css",
  519. "outputAbbreviatedPath": "No Output Path",
  520. "outputPathIsOutsideProject": 0,
  521. "outputPathIsSetByUser": 0
  522. },
  523. "\/public\/ng\/fonts\/octicons.css": {
  524. "fileType": 16,
  525. "ignore": 0,
  526. "ignoreWasSetByUser": 0,
  527. "inputAbbreviatedPath": "\/public\/ng\/fonts\/octicons.css",
  528. "outputAbbreviatedPath": "No Output Path",
  529. "outputPathIsOutsideProject": 0,
  530. "outputPathIsSetByUser": 0
  531. },
  532. "\/public\/ng\/js\/gogs.js": {
  533. "fileType": 64,
  534. "ignore": 0,
  535. "ignoreWasSetByUser": 0,
  536. "inputAbbreviatedPath": "\/public\/ng\/js\/gogs.js",
  537. "outputAbbreviatedPath": "\/public\/ng\/js\/min\/gogs-min.js",
  538. "outputPathIsOutsideProject": 0,
  539. "outputPathIsSetByUser": 0,
  540. "outputStyle": 1,
  541. "syntaxCheckerStyle": 1
  542. },
  543. "\/public\/ng\/js\/gogs\/issue_label.js": {
  544. "fileType": 64,
  545. "ignore": 1,
  546. "ignoreWasSetByUser": 0,
  547. "inputAbbreviatedPath": "\/public\/ng\/js\/gogs\/issue_label.js",
  548. "outputAbbreviatedPath": "\/public\/ng\/js\/gogs\/min\/issue_label-min.js",
  549. "outputPathIsOutsideProject": 0,
  550. "outputPathIsSetByUser": 0,
  551. "outputStyle": 1,
  552. "syntaxCheckerStyle": 1
  553. },
  554. "\/public\/ng\/js\/lib\/jquery-1.11.1.min.js": {
  555. "fileType": 64,
  556. "ignore": 1,
  557. "ignoreWasSetByUser": 0,
  558. "inputAbbreviatedPath": "\/public\/ng\/js\/lib\/jquery-1.11.1.min.js",
  559. "outputAbbreviatedPath": "\/public\/ng\/js\/lib\/min\/jquery-1.11.1.min-min.js",
  560. "outputPathIsOutsideProject": 0,
  561. "outputPathIsSetByUser": 0,
  562. "outputStyle": 1,
  563. "syntaxCheckerStyle": 1
  564. },
  565. "\/public\/ng\/js\/lib\/jquery.magnific-popup.min.js": {
  566. "fileType": 64,
  567. "ignore": 0,
  568. "ignoreWasSetByUser": 0,
  569. "inputAbbreviatedPath": "\/public\/ng\/js\/lib\/jquery.magnific-popup.min.js",
  570. "outputAbbreviatedPath": "\/public\/ng\/js\/lib\/min\/jquery.magnific-popup.min-min.js",
  571. "outputPathIsOutsideProject": 0,
  572. "outputPathIsSetByUser": 0,
  573. "outputStyle": 1,
  574. "syntaxCheckerStyle": 1
  575. },
  576. "\/public\/ng\/js\/lib\/jquery.tipsy.js": {
  577. "fileType": 64,
  578. "ignore": 1,
  579. "ignoreWasSetByUser": 0,
  580. "inputAbbreviatedPath": "\/public\/ng\/js\/lib\/jquery.tipsy.js",
  581. "outputAbbreviatedPath": "\/public\/ng\/js\/lib\/min\/jquery.tipsy-min.js",
  582. "outputPathIsOutsideProject": 0,
  583. "outputPathIsSetByUser": 0,
  584. "outputStyle": 1,
  585. "syntaxCheckerStyle": 1
  586. },
  587. "\/public\/ng\/js\/lib\/lib.js": {
  588. "fileType": 64,
  589. "ignore": 1,
  590. "ignoreWasSetByUser": 1,
  591. "inputAbbreviatedPath": "\/public\/ng\/js\/lib\/lib.js",
  592. "outputAbbreviatedPath": "\/public\/ng\/js\/lib\/min\/lib-min.js",
  593. "outputPathIsOutsideProject": 0,
  594. "outputPathIsSetByUser": 0,
  595. "outputStyle": 1,
  596. "syntaxCheckerStyle": 1
  597. },
  598. "\/public\/ng\/js\/min\/gogs-min.js": {
  599. "fileType": 64,
  600. "ignore": 1,
  601. "ignoreWasSetByUser": 0,
  602. "inputAbbreviatedPath": "\/public\/ng\/js\/min\/gogs-min.js",
  603. "outputAbbreviatedPath": "\/public\/ng\/js\/min\/min\/gogs-min-min.js",
  604. "outputPathIsOutsideProject": 0,
  605. "outputPathIsSetByUser": 0,
  606. "outputStyle": 1,
  607. "syntaxCheckerStyle": 1
  608. },
  609. "\/public\/ng\/js\/utils\/preview.js": {
  610. "fileType": 64,
  611. "ignore": 1,
  612. "ignoreWasSetByUser": 0,
  613. "inputAbbreviatedPath": "\/public\/ng\/js\/utils\/preview.js",
  614. "outputAbbreviatedPath": "\/public\/ng\/js\/utils\/min\/preview-min.js",
  615. "outputPathIsOutsideProject": 0,
  616. "outputPathIsSetByUser": 0,
  617. "outputStyle": 1,
  618. "syntaxCheckerStyle": 1
  619. },
  620. "\/public\/ng\/js\/utils\/tabs.js": {
  621. "fileType": 64,
  622. "ignore": 1,
  623. "ignoreWasSetByUser": 0,
  624. "inputAbbreviatedPath": "\/public\/ng\/js\/utils\/tabs.js",
  625. "outputAbbreviatedPath": "\/public\/ng\/js\/utils\/min\/tabs-min.js",
  626. "outputPathIsOutsideProject": 0,
  627. "outputPathIsSetByUser": 0,
  628. "outputStyle": 1,
  629. "syntaxCheckerStyle": 1
  630. },
  631. "\/public\/ng\/less\/gogs.less": {
  632. "allowInsecureImports": 0,
  633. "createSourceMap": 0,
  634. "disableJavascript": 0,
  635. "fileType": 1,
  636. "ieCompatibility": 1,
  637. "ignore": 0,
  638. "ignoreWasSetByUser": 0,
  639. "inputAbbreviatedPath": "\/public\/ng\/less\/gogs.less",
  640. "outputAbbreviatedPath": "\/public\/ng\/css\/gogs.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\/admin.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\/admin.less",
  660. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/admin.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\/base.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\/base.less",
  680. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/base.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\/dashboard.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\/dashboard.less",
  700. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/dashboard.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\/external.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\/external.less",
  720. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/external.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\/issue.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\/issue.less",
  740. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/issue.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\/markdown.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\/markdown.less",
  760. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/markdown.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\/organization.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\/organization.less",
  780. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/organization.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\/profile.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\/profile.less",
  800. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/profile.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\/gogs\/repository.less": {
  812. "allowInsecureImports": 0,
  813. "createSourceMap": 0,
  814. "disableJavascript": 0,
  815. "fileType": 1,
  816. "ieCompatibility": 1,
  817. "ignore": 1,
  818. "ignoreWasSetByUser": 0,
  819. "inputAbbreviatedPath": "\/public\/ng\/less\/gogs\/repository.less",
  820. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/repository.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\/gogs\/settings.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\/gogs\/settings.less",
  840. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/settings.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\/gogs\/sign.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\/gogs\/sign.less",
  860. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/sign.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.less": {
  872. "allowInsecureImports": 0,
  873. "createSourceMap": 0,
  874. "disableJavascript": 0,
  875. "fileType": 1,
  876. "ieCompatibility": 1,
  877. "ignore": 0,
  878. "ignoreWasSetByUser": 0,
  879. "inputAbbreviatedPath": "\/public\/ng\/less\/ui.less",
  880. "outputAbbreviatedPath": "\/public\/ng\/css\/ui.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\/alert.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\/alert.less",
  900. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/alert.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\/bread.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\/bread.less",
  920. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/bread.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\/form.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\/form.less",
  940. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/form.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\/grid.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\/grid.less",
  960. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/grid.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\/label.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\/label.less",
  980. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/label.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\/menu.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\/menu.less",
  1000. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/menu.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\/pager.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\/pager.less",
  1020. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/pager.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\/panel.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\/panel.less",
  1040. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/panel.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. "\/public\/ng\/less\/ui\/reset.less": {
  1052. "allowInsecureImports": 0,
  1053. "createSourceMap": 0,
  1054. "disableJavascript": 0,
  1055. "fileType": 1,
  1056. "ieCompatibility": 1,
  1057. "ignore": 1,
  1058. "ignoreWasSetByUser": 0,
  1059. "inputAbbreviatedPath": "\/public\/ng\/less\/ui\/reset.less",
  1060. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/reset.css",
  1061. "outputPathIsOutsideProject": 0,
  1062. "outputPathIsSetByUser": 0,
  1063. "outputStyle": 0,
  1064. "relativeURLS": 0,
  1065. "shouldRunAutoprefixer": 0,
  1066. "shouldRunBless": 0,
  1067. "strictImports": 0,
  1068. "strictMath": 0,
  1069. "strictUnits": 0
  1070. },
  1071. "\/public\/ng\/less\/ui\/table.less": {
  1072. "allowInsecureImports": 0,
  1073. "createSourceMap": 0,
  1074. "disableJavascript": 0,
  1075. "fileType": 1,
  1076. "ieCompatibility": 1,
  1077. "ignore": 1,
  1078. "ignoreWasSetByUser": 0,
  1079. "inputAbbreviatedPath": "\/public\/ng\/less\/ui\/table.less",
  1080. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/table.css",
  1081. "outputPathIsOutsideProject": 0,
  1082. "outputPathIsSetByUser": 0,
  1083. "outputStyle": 0,
  1084. "relativeURLS": 0,
  1085. "shouldRunAutoprefixer": 0,
  1086. "shouldRunBless": 0,
  1087. "strictImports": 0,
  1088. "strictMath": 0,
  1089. "strictUnits": 0
  1090. },
  1091. "\/public\/ng\/less\/ui\/var.less": {
  1092. "allowInsecureImports": 0,
  1093. "createSourceMap": 0,
  1094. "disableJavascript": 0,
  1095. "fileType": 1,
  1096. "ieCompatibility": 1,
  1097. "ignore": 1,
  1098. "ignoreWasSetByUser": 0,
  1099. "inputAbbreviatedPath": "\/public\/ng\/less\/ui\/var.less",
  1100. "outputAbbreviatedPath": "\/public\/ng\/less\/css\/var.css",
  1101. "outputPathIsOutsideProject": 0,
  1102. "outputPathIsSetByUser": 0,
  1103. "outputStyle": 0,
  1104. "relativeURLS": 0,
  1105. "shouldRunAutoprefixer": 0,
  1106. "shouldRunBless": 0,
  1107. "strictImports": 0,
  1108. "strictMath": 0,
  1109. "strictUnits": 0
  1110. },
  1111. "\/README.md": {
  1112. "criticStyle": 0,
  1113. "enableFootnotes": 0,
  1114. "enableLabels": 1,
  1115. "enableSmartQuotes": 1,
  1116. "escapeLineBreaks": 0,
  1117. "fileType": 4096,
  1118. "ignore": 1,
  1119. "ignoreWasSetByUser": 0,
  1120. "inputAbbreviatedPath": "\/README.md",
  1121. "maskEmailAddresses": 1,
  1122. "outputAbbreviatedPath": "\/README.html",
  1123. "outputFormat": 0,
  1124. "outputPathIsOutsideProject": 0,
  1125. "outputPathIsSetByUser": 0,
  1126. "outputStyle": 0,
  1127. "parseMetadata": 1,
  1128. "processHTML": 0,
  1129. "randomFootnoteNumbers": 0,
  1130. "useCompatibilityMode": 0
  1131. },
  1132. "\/README_ZH.md": {
  1133. "criticStyle": 0,
  1134. "enableFootnotes": 0,
  1135. "enableLabels": 1,
  1136. "enableSmartQuotes": 1,
  1137. "escapeLineBreaks": 0,
  1138. "fileType": 4096,
  1139. "ignore": 1,
  1140. "ignoreWasSetByUser": 0,
  1141. "inputAbbreviatedPath": "\/README_ZH.md",
  1142. "maskEmailAddresses": 1,
  1143. "outputAbbreviatedPath": "\/README_ZH.html",
  1144. "outputFormat": 0,
  1145. "outputPathIsOutsideProject": 0,
  1146. "outputPathIsSetByUser": 0,
  1147. "outputStyle": 0,
  1148. "parseMetadata": 1,
  1149. "processHTML": 0,
  1150. "randomFootnoteNumbers": 0,
  1151. "useCompatibilityMode": 0
  1152. }
  1153. },
  1154. "hooks": [
  1155. ],
  1156. "lastSavedByUser": "Jiahua Chen",
  1157. "manualImportLinks": {
  1158. },
  1159. "projectAttributes": {
  1160. "bowerAbbreviatedPath": "",
  1161. "displayValue": "gogs",
  1162. "displayValueWasSetByUser": 1,
  1163. "iconImageName": "compass_yellow"
  1164. },
  1165. "projectSettings": {
  1166. "alwaysUseExternalServer": 0,
  1167. "animateCSSInjections": 1,
  1168. "autoApplyPSLanguageSettingsStyle": 0,
  1169. "autoprefixerBrowserString": "> 1%, last 2 versions, Firefox ESR, Opera 12.1",
  1170. "autoSyncProjectSettingsFile": 1,
  1171. "browserRefreshDelay": 0,
  1172. "coffeeAutoOutputPathEnabled": 1,
  1173. "coffeeAutoOutputPathFilenamePattern": "*.js",
  1174. "coffeeAutoOutputPathRelativePath": "",
  1175. "coffeeAutoOutputPathReplace1": "",
  1176. "coffeeAutoOutputPathReplace2": "",
  1177. "coffeeAutoOutputPathStyle": 0,
  1178. "coffeeCreateSourceMap": 0,
  1179. "coffeeLintFlags2": {
  1180. "arrow_spacing": {
  1181. "active": 0,
  1182. "flagValue": -1
  1183. },
  1184. "camel_case_classes": {
  1185. "active": 1,
  1186. "flagValue": -1
  1187. },
  1188. "colon_assignment_spacing": {
  1189. "active": 0,
  1190. "flagValue": 1
  1191. },
  1192. "cyclomatic_complexity": {
  1193. "active": 0,
  1194. "flagValue": 10
  1195. },
  1196. "duplicate_key": {
  1197. "active": 1,
  1198. "flagValue": -1
  1199. },
  1200. "empty_constructor_needs_parens": {
  1201. "active": 0,
  1202. "flagValue": -1
  1203. },
  1204. "ensure_comprehensions": {
  1205. "active": 1,
  1206. "flagValue": -1
  1207. },
  1208. "indentation": {
  1209. "active": 1,
  1210. "flagValue": 2
  1211. },
  1212. "line_endings": {
  1213. "active": 0,
  1214. "flagValue": 0
  1215. },
  1216. "max_line_length": {
  1217. "active": 0,
  1218. "flagValue": 150
  1219. },
  1220. "missing_fat_arrows": {
  1221. "active": 0,
  1222. "flagValue": -1
  1223. },
  1224. "newlines_after_classes": {
  1225. "active": 0,
  1226. "flagValue": 3
  1227. },
  1228. "no_backticks": {
  1229. "active": 1,
  1230. "flagValue": -1
  1231. },
  1232. "no_debugger": {
  1233. "active": 1,
  1234. "flagValue": -1
  1235. },
  1236. "no_empty_functions": {
  1237. "active": 0,
  1238. "flagValue": -1
  1239. },
  1240. "no_empty_param_list": {
  1241. "active": 0,
  1242. "flagValue": -1
  1243. },
  1244. "no_implicit_braces": {
  1245. "active": 1,
  1246. "flagValue": -1
  1247. },
  1248. "no_implicit_parens": {
  1249. "active": 0,
  1250. "flagValue": -1
  1251. },
  1252. "no_interpolation_in_single_quotes": {
  1253. "active": 0,
  1254. "flagValue": -1
  1255. },
  1256. "no_plusplus": {
  1257. "active": 0,
  1258. "flagValue": -1
  1259. },
  1260. "no_stand_alone_at": {
  1261. "active": 1,
  1262. "flagValue": -1
  1263. },
  1264. "no_tabs": {
  1265. "active": 1,
  1266. "flagValue": -1
  1267. },
  1268. "no_throwing_strings": {
  1269. "active": 1,
  1270. "flagValue": -1
  1271. },
  1272. "no_trailing_semicolons": {
  1273. "active": 1,
  1274. "flagValue": -1
  1275. },
  1276. "no_trailing_whitespace": {
  1277. "active": 1,
  1278. "flagValue": -1
  1279. },
  1280. "no_unnecessary_double_quotes": {
  1281. "active": 0,
  1282. "flagValue": -1
  1283. },
  1284. "no_unnecessary_fat_arrows": {
  1285. "active": 1,
  1286. "flagValue": -1
  1287. },
  1288. "non_empty_constructor_needs_parens": {
  1289. "active": 0,
  1290. "flagValue": -1
  1291. },
  1292. "prefer_english_operator": {
  1293. "active": 0,
  1294. "flagValue": -1
  1295. },
  1296. "space_operators": {
  1297. "active": 0,
  1298. "flagValue": -1
  1299. },
  1300. "spacing_after_comma": {
  1301. "active": 1,
  1302. "flagValue": -1
  1303. }
  1304. },
  1305. "coffeeMinifyOutput": 1,
  1306. "coffeeOutputStyle": 0,
  1307. "coffeeSyntaxCheckerStyle": 1,
  1308. "externalServerAddress": "http:\/\/localhost:8888",
  1309. "externalServerPreviewPathAddition": "",
  1310. "genericWebpageFileExtensionsString": "html, htm, shtml, shtm, xhtml, php, jsp, asp, aspx, erb, ctp",
  1311. "hamlAutoOutputPathEnabled": 1,
  1312. "hamlAutoOutputPathFilenamePattern": "*.html",
  1313. "hamlAutoOutputPathRelativePath": "",
  1314. "hamlAutoOutputPathReplace1": "",
  1315. "hamlAutoOutputPathReplace2": "",
  1316. "hamlAutoOutputPathStyle": 0,
  1317. "hamlEscapeHTMLCharacters": 0,
  1318. "hamlNoEscapeInAttributes": 0,
  1319. "hamlOutputFormat": 2,
  1320. "hamlOutputStyle": 0,
  1321. "hamlUseCDATA": 0,
  1322. "hamlUseDoubleQuotes": 0,
  1323. "hamlUseUnixNewlines": 0,
  1324. "jadeAutoOutputPathEnabled": 1,
  1325. "jadeAutoOutputPathFilenamePattern": "*.html",
  1326. "jadeAutoOutputPathRelativePath": "",
  1327. "jadeAutoOutputPathReplace1": "",
  1328. "jadeAutoOutputPathReplace2": "",
  1329. "jadeAutoOutputPathStyle": 0,
  1330. "jadeCompileDebug": 1,
  1331. "jadeOutputStyle": 0,
  1332. "javascriptAutoOutputPathEnabled": 1,
  1333. "javascriptAutoOutputPathFilenamePattern": "*-min.js",
  1334. "javascriptAutoOutputPathRelativePath": "\/min",
  1335. "javascriptAutoOutputPathReplace1": "",
  1336. "javascriptAutoOutputPathReplace2": "",
  1337. "javascriptAutoOutputPathStyle": 2,
  1338. "javascriptCreateSourceMap": 1,
  1339. "javascriptOutputStyle": 1,
  1340. "javascriptSyntaxCheckerStyle": 1,
  1341. "jsCheckerReservedNamesString": "",
  1342. "jsHintFlags2": {
  1343. "asi": {
  1344. "active": 0,
  1345. "flagValue": -1
  1346. },
  1347. "bitwise": {
  1348. "active": 1,
  1349. "flagValue": -1
  1350. },
  1351. "boss": {
  1352. "active": 0,
  1353. "flagValue": -1
  1354. },
  1355. "browser": {
  1356. "active": 1,
  1357. "flagValue": -1
  1358. },
  1359. "browserify": {
  1360. "active": 0,
  1361. "flagValue": -1
  1362. },
  1363. "camelcase": {
  1364. "active": 0,
  1365. "flagValue": -1
  1366. },
  1367. "couch": {
  1368. "active": 0,
  1369. "flagValue": -1
  1370. },
  1371. "curly": {
  1372. "active": 1,
  1373. "flagValue": -1
  1374. },
  1375. "debug": {
  1376. "active": 0,
  1377. "flagValue": -1
  1378. },
  1379. "devel": {
  1380. "active": 0,
  1381. "flagValue": -1
  1382. },
  1383. "dojo": {
  1384. "active": 0,
  1385. "flagValue": -1
  1386. },
  1387. "elision": {
  1388. "active": 1,
  1389. "flagValue": -1
  1390. },
  1391. "eqeqeq": {
  1392. "active": 1,
  1393. "flagValue": -1
  1394. },
  1395. "eqnull": {
  1396. "active": 0,
  1397. "flagValue": -1
  1398. },
  1399. "es3": {
  1400. "active": 0,
  1401. "flagValue": -1
  1402. },
  1403. "esnext": {
  1404. "active": 0,
  1405. "flagValue": -1
  1406. },
  1407. "evil": {
  1408. "active": 1,
  1409. "flagValue": -1
  1410. },
  1411. "expr": {
  1412. "active": 0,
  1413. "flagValue": -1
  1414. },
  1415. "forin": {
  1416. "active": 0,
  1417. "flagValue": -1
  1418. },
  1419. "freeze": {
  1420. "active": 1,
  1421. "flagValue": -1
  1422. },
  1423. "funcscope": {
  1424. "active": 0,
  1425. "flagValue": -1
  1426. },
  1427. "futurehostile": {
  1428. "active": 0,
  1429. "flagValue": -1
  1430. },
  1431. "globalstrict": {
  1432. "active": 0,
  1433. "flagValue": -1
  1434. },
  1435. "immed": {
  1436. "active": 0,
  1437. "flagValue": -1
  1438. },
  1439. "indent": {
  1440. "active": 0,
  1441. "flagValue": 4
  1442. },
  1443. "iterator": {
  1444. "active": 0,
  1445. "flagValue": -1
  1446. },
  1447. "jasmine": {
  1448. "active": 0,
  1449. "flagValue": -1
  1450. },
  1451. "jquery": {
  1452. "active": 1,
  1453. "flagValue": -1
  1454. },
  1455. "lastsemic": {
  1456. "active": 0,
  1457. "flagValue": -1
  1458. },
  1459. "latedef": {
  1460. "active": 1,
  1461. "flagValue": -1
  1462. },
  1463. "laxbreak": {
  1464. "active": 0,
  1465. "flagValue": -1
  1466. },
  1467. "laxcomma": {
  1468. "active": 0,
  1469. "flagValue": -1
  1470. },
  1471. "loopfunc": {
  1472. "active": 0,
  1473. "flagValue": -1
  1474. },
  1475. "maxcomplexity": {
  1476. "active": 0,
  1477. "flagValue": 10
  1478. },
  1479. "maxdepth": {
  1480. "active": 0,
  1481. "flagValue": 3
  1482. },
  1483. "maxlen": {
  1484. "active": 0,
  1485. "flagValue": 150
  1486. },
  1487. "maxparams": {
  1488. "active": 0,
  1489. "flagValue": 3
  1490. },
  1491. "maxstatements": {
  1492. "active": 0,
  1493. "flagValue": 4
  1494. },
  1495. "mocha": {
  1496. "active": 0,
  1497. "flagValue": -1
  1498. },
  1499. "mootools": {
  1500. "active": 0,
  1501. "flagValue": -1
  1502. },
  1503. "moz": {
  1504. "active": 0,
  1505. "flagValue": -1
  1506. },
  1507. "multistr": {
  1508. "active": 0,
  1509. "flagValue": -1
  1510. },
  1511. "newcap": {
  1512. "active": 1,
  1513. "flagValue": -1
  1514. },
  1515. "noarg": {
  1516. "active": 1,
  1517. "flagValue": -1
  1518. },
  1519. "nocomma": {
  1520. "active": 0,
  1521. "flagValue": -1
  1522. },
  1523. "node": {
  1524. "active": 0,
  1525. "flagValue": -1
  1526. },
  1527. "noempty": {
  1528. "active": 0,
  1529. "flagValue": -1
  1530. },
  1531. "nonbsp": {
  1532. "active": 0,
  1533. "flagValue": -1
  1534. },
  1535. "nonew": {
  1536. "active": 1,
  1537. "flagValue": -1
  1538. },
  1539. "nonstandard": {
  1540. "active": 0,
  1541. "flagValue": -1
  1542. },
  1543. "notypeof": {
  1544. "active": 1,
  1545. "flagValue": -1
  1546. },
  1547. "noyield": {
  1548. "active": 0,
  1549. "flagValue": -1
  1550. },
  1551. "onecase": {
  1552. "active": 0,
  1553. "flagValue": -1
  1554. },
  1555. "phantom": {
  1556. "active": 0,
  1557. "flagValue": -1
  1558. },
  1559. "plusplus": {
  1560. "active": 0,
  1561. "flagValue": -1
  1562. },
  1563. "proto": {
  1564. "active": 0,
  1565. "flagValue": -1
  1566. },
  1567. "prototypejs": {
  1568. "active": 0,
  1569. "flagValue": -1
  1570. },
  1571. "qunit": {
  1572. "active": 0,
  1573. "flagValue": -1
  1574. },
  1575. "regexp": {
  1576. "active": 1,
  1577. "flagValue": -1
  1578. },
  1579. "rhino": {
  1580. "active": 0,
  1581. "flagValue": -1
  1582. },
  1583. "scripturl": {
  1584. "active": 0,
  1585. "flagValue": -1
  1586. },
  1587. "shadow": {
  1588. "active": 0,
  1589. "flagValue": -1
  1590. },
  1591. "shelljs": {
  1592. "active": 0,
  1593. "flagValue": -1
  1594. },
  1595. "singleGroups": {
  1596. "active": 0,
  1597. "flagValue": -1
  1598. },
  1599. "strict": {
  1600. "active": 0,
  1601. "flagValue": -1
  1602. },
  1603. "sub": {
  1604. "active": 0,
  1605. "flagValue": -1
  1606. },
  1607. "supernew": {
  1608. "active": 0,
  1609. "flagValue": -1
  1610. },
  1611. "typed": {
  1612. "active": 0,
  1613. "flagValue": -1
  1614. },
  1615. "undef": {
  1616. "active": 1,
  1617. "flagValue": -1
  1618. },
  1619. "unused": {
  1620. "active": 1,
  1621. "flagValue": -1
  1622. },
  1623. "varstmt": {
  1624. "active": 0,
  1625. "flagValue": -1
  1626. },
  1627. "withstmt": {
  1628. "active": 0,
  1629. "flagValue": -1
  1630. },
  1631. "worker": {
  1632. "active": 0,
  1633. "flagValue": -1
  1634. },
  1635. "wsh": {
  1636. "active": 0,
  1637. "flagValue": -1
  1638. },
  1639. "yui": {
  1640. "active": 0,
  1641. "flagValue": -1
  1642. }
  1643. },
  1644. "jsLintFlags2": {
  1645. "bitwise": {
  1646. "active": 0,
  1647. "flagValue": -1
  1648. },
  1649. "browser": {
  1650. "active": 1,
  1651. "flagValue": -1
  1652. },
  1653. "couch": {
  1654. "active": 0,
  1655. "flagValue": -1
  1656. },
  1657. "devel": {
  1658. "active": 0,
  1659. "flagValue": -1
  1660. },
  1661. "es6": {
  1662. "active": 0,
  1663. "flagValue": -1
  1664. },
  1665. "eval": {
  1666. "active": 0,
  1667. "flagValue": -1
  1668. },
  1669. "for": {
  1670. "active": 0,
  1671. "flagValue": -1
  1672. },
  1673. "maxlen": {
  1674. "active": 0,
  1675. "flagValue": 150
  1676. },
  1677. "node": {
  1678. "active": 0,
  1679. "flagValue": -1
  1680. },
  1681. "this": {
  1682. "active": 0,
  1683. "flagValue": -1
  1684. },
  1685. "white": {
  1686. "active": 0,
  1687. "flagValue": -1
  1688. }
  1689. },
  1690. "jsonAutoOutputPathEnabled": 0,
  1691. "jsonAutoOutputPathFilenamePattern": "*-min.json",
  1692. "jsonAutoOutputPathRelativePath": "",
  1693. "jsonAutoOutputPathReplace1": "",
  1694. "jsonAutoOutputPathReplace2": "",
  1695. "jsonAutoOutputPathStyle": 0,
  1696. "jsonOrderOutput": 0,
  1697. "jsonOutputStyle": 1,
  1698. "kitAutoOutputPathEnabled": 1,
  1699. "kitAutoOutputPathFilenamePattern": "*.html",
  1700. "kitAutoOutputPathRelativePath": "",
  1701. "kitAutoOutputPathReplace1": "",
  1702. "kitAutoOutputPathReplace2": "",
  1703. "kitAutoOutputPathStyle": 0,
  1704. "lessAllowInsecureImports": 0,
  1705. "lessAutoOutputPathEnabled": 1,
  1706. "lessAutoOutputPathFilenamePattern": "*.css",
  1707. "lessAutoOutputPathRelativePath": "..\/css",
  1708. "lessAutoOutputPathReplace1": "less",
  1709. "lessAutoOutputPathReplace2": "css",
  1710. "lessAutoOutputPathStyle": 2,
  1711. "lessCreateSourceMap": 0,
  1712. "lessDisableJavascript": 0,
  1713. "lessIeCompatibility": 1,
  1714. "lessOutputStyle": 0,
  1715. "lessRelativeURLS": 0,
  1716. "lessStrictImports": 0,
  1717. "lessStrictMath": 0,
  1718. "lessStrictUnits": 0,
  1719. "markdownAutoOutputPathEnabled": 0,
  1720. "markdownAutoOutputPathFilenamePattern": "*.html",
  1721. "markdownAutoOutputPathRelativePath": "",
  1722. "markdownAutoOutputPathReplace1": "",
  1723. "markdownAutoOutputPathReplace2": "",
  1724. "markdownAutoOutputPathStyle": 0,
  1725. "markdownCriticStyle": 0,
  1726. "markdownEnableFootnotes": 0,
  1727. "markdownEnableLabels": 1,
  1728. "markdownEnableSmartQuotes": 1,
  1729. "markdownEscapeLineBreaks": 0,
  1730. "markdownMaskEmailAddresses": 1,
  1731. "markdownOutputFormat": 0,
  1732. "markdownOutputStyle": 0,
  1733. "markdownParseMetadata": 1,
  1734. "markdownProcessHTML": 0,
  1735. "markdownRandomFootnoteNumbers": 0,
  1736. "markdownUseCompatibilityMode": 0,
  1737. "reloadFileURLs": 0,
  1738. "sassAutoOutputPathEnabled": 1,
  1739. "sassAutoOutputPathFilenamePattern": "*.css",
  1740. "sassAutoOutputPathRelativePath": "..\/css",
  1741. "sassAutoOutputPathReplace1": "sass",
  1742. "sassAutoOutputPathReplace2": "css",
  1743. "sassAutoOutputPathStyle": 2,
  1744. "sassCreateSourceMap": 0,
  1745. "sassDebugStyle": 0,
  1746. "sassDecimalPrecision": 5,
  1747. "sassOutputStyle": 0,
  1748. "sassUseLibsass": 0,
  1749. "shouldRunAutoprefixer": 0,
  1750. "shouldRunBless": 0,
  1751. "skippedItemsString": "\/public\/js, _logs, \/public\/js\/lib, .hg, _cache, log, logs, cache, .svn, .git, \/public\/img\/emoji, \/public\/css",
  1752. "slimAutoOutputPathEnabled": 1,
  1753. "slimAutoOutputPathFilenamePattern": "*.html",
  1754. "slimAutoOutputPathRelativePath": "",
  1755. "slimAutoOutputPathReplace1": "",
  1756. "slimAutoOutputPathReplace2": "",
  1757. "slimAutoOutputPathStyle": 0,
  1758. "slimCompileOnly": 0,
  1759. "slimLogicless": 0,
  1760. "slimOutputFormat": 0,
  1761. "slimOutputStyle": 1,
  1762. "slimRailsCompatible": 0,
  1763. "stylusAutoOutputPathEnabled": 1,
  1764. "stylusAutoOutputPathFilenamePattern": "*.css",
  1765. "stylusAutoOutputPathRelativePath": "..\/css",
  1766. "stylusAutoOutputPathReplace1": "stylus",
  1767. "stylusAutoOutputPathReplace2": "css",
  1768. "stylusAutoOutputPathStyle": 2,
  1769. "stylusCreateSourceMap": 0,
  1770. "stylusDebugStyle": 0,
  1771. "stylusImportCSS": 0,
  1772. "stylusOutputStyle": 0,
  1773. "stylusResolveRelativeURLS": 0,
  1774. "typescriptAutoOutputPathEnabled": 1,
  1775. "typescriptAutoOutputPathFilenamePattern": "*.js",
  1776. "typescriptAutoOutputPathRelativePath": "\/js",
  1777. "typescriptAutoOutputPathReplace1": "",
  1778. "typescriptAutoOutputPathReplace2": "",
  1779. "typescriptAutoOutputPathStyle": 2,
  1780. "typescriptCreateDeclarationFile": 0,
  1781. "typescriptCreateSourceMap": 0,
  1782. "typescriptMinifyOutput": 0,
  1783. "typescriptModuleType": 0,
  1784. "typescriptNoImplicitAny": 0,
  1785. "typescriptPreserveConstEnums": 0,
  1786. "typescriptRemoveComments": 0,
  1787. "typescriptSuppressImplicitAnyIndexErrors": 0,
  1788. "typescriptTargetECMAVersion": 0,
  1789. "uglifyDefinesString": "",
  1790. "uglifyFlags2": {
  1791. "ascii-only": {
  1792. "active": 0,
  1793. "flagValue": -1
  1794. },
  1795. "bare-returns": {
  1796. "active": 0,
  1797. "flagValue": -1
  1798. },
  1799. "booleans": {
  1800. "active": 1,
  1801. "flagValue": -1
  1802. },
  1803. "bracketize": {
  1804. "active": 0,
  1805. "flagValue": -1
  1806. },
  1807. "cascade": {
  1808. "active": 1,
  1809. "flagValue": -1
  1810. },
  1811. "comments": {
  1812. "active": 1,
  1813. "flagValue": -1
  1814. },
  1815. "comparisons": {
  1816. "active": 1,
  1817. "flagValue": -1
  1818. },
  1819. "compress": {
  1820. "active": 1,
  1821. "flagValue": -1
  1822. },
  1823. "conditionals": {
  1824. "active": 1,
  1825. "flagValue": -1
  1826. },
  1827. "dead_code": {
  1828. "active": 0,
  1829. "flagValue": -1
  1830. },
  1831. "drop_console": {
  1832. "active": 0,
  1833. "flagValue": -1
  1834. },
  1835. "drop_debugger": {
  1836. "active": 1,
  1837. "flagValue": -1
  1838. },
  1839. "eval": {
  1840. "active": 0,
  1841. "flagValue": -1
  1842. },
  1843. "evaluate": {
  1844. "active": 1,
  1845. "flagValue": -1
  1846. },
  1847. "hoist_funs": {
  1848. "active": 1,
  1849. "flagValue": -1
  1850. },
  1851. "hoist_vars": {
  1852. "active": 0,
  1853. "flagValue": -1
  1854. },
  1855. "if_return": {
  1856. "active": 1,
  1857. "flagValue": -1
  1858. },
  1859. "indent-level": {
  1860. "active": 0,
  1861. "flagValue": 4
  1862. },
  1863. "indent-start": {
  1864. "active": 0,
  1865. "flagValue": 0
  1866. },
  1867. "inline-script": {
  1868. "active": 0,
  1869. "flagValue": -1
  1870. },
  1871. "join_vars": {
  1872. "active": 1,
  1873. "flagValue": -1
  1874. },
  1875. "keep_fargs": {
  1876. "active": 0,
  1877. "flagValue": -1
  1878. },
  1879. "keep_fnames": {
  1880. "active": 0,
  1881. "flagValue": -1
  1882. },
  1883. "loops": {
  1884. "active": 1,
  1885. "flagValue": -1
  1886. },
  1887. "mangle": {
  1888. "active": 1,
  1889. "flagValue": -1
  1890. },
  1891. "max-line-len": {
  1892. "active": 1,
  1893. "flagValue": 32000
  1894. },
  1895. "negate_iife": {
  1896. "active": 1,
  1897. "flagValue": -1
  1898. },
  1899. "properties": {
  1900. "active": 1,
  1901. "flagValue": -1
  1902. },
  1903. "pure_getters": {
  1904. "active": 0,
  1905. "flagValue": -1
  1906. },
  1907. "quote-keys": {
  1908. "active": 0,
  1909. "flagValue": -1
  1910. },
  1911. "screw-ie8": {
  1912. "active": 0,
  1913. "flagValue": -1
  1914. },
  1915. "semicolons": {
  1916. "active": 1,
  1917. "flagValue": -1
  1918. },
  1919. "sequences": {
  1920. "active": 1,
  1921. "flagValue": -1
  1922. },
  1923. "sort": {
  1924. "active": 0,
  1925. "flagValue": -1
  1926. },
  1927. "space-colon": {
  1928. "active": 1,
  1929. "flagValue": -1
  1930. },
  1931. "toplevel": {
  1932. "active": 0,
  1933. "flagValue": -1
  1934. },
  1935. "unsafe": {
  1936. "active": 0,
  1937. "flagValue": -1
  1938. },
  1939. "unused": {
  1940. "active": 0,
  1941. "flagValue": -1
  1942. },
  1943. "warnings": {
  1944. "active": 0,
  1945. "flagValue": -1
  1946. },
  1947. "width": {
  1948. "active": 1,
  1949. "flagValue": 80
  1950. }
  1951. },
  1952. "uglifyReservedNamesString": "$",
  1953. "websiteRelativeRoot": ""
  1954. },
  1955. "settingsFileVersion": "2"
  1956. }