config.codekit 47 KB

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