You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.codekit 47KB

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