config.codekit 47 KB

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