config.codekit 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439
  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": "18493",
  4. "files": {
  5. "\/css\/bootstrap-colorpicker.min.css": {
  6. "fileType": 16,
  7. "ignore": 0,
  8. "ignoreWasSetByUser": 0,
  9. "inputAbbreviatedPath": "\/css\/bootstrap-colorpicker.min.css",
  10. "outputAbbreviatedPath": "No Output Path",
  11. "outputPathIsOutsideProject": 0,
  12. "outputPathIsSetByUser": 0
  13. },
  14. "\/css\/bootstrap.min.css": {
  15. "fileType": 16,
  16. "ignore": 0,
  17. "ignoreWasSetByUser": 0,
  18. "inputAbbreviatedPath": "\/css\/bootstrap.min.css",
  19. "outputAbbreviatedPath": "No Output Path",
  20. "outputPathIsOutsideProject": 0,
  21. "outputPathIsSetByUser": 0
  22. },
  23. "\/css\/datepicker3.css": {
  24. "fileType": 16,
  25. "ignore": 0,
  26. "ignoreWasSetByUser": 0,
  27. "inputAbbreviatedPath": "\/css\/datepicker3.css",
  28. "outputAbbreviatedPath": "No Output Path",
  29. "outputPathIsOutsideProject": 0,
  30. "outputPathIsSetByUser": 0
  31. },
  32. "\/css\/font-awesome.min.css": {
  33. "fileType": 16,
  34. "ignore": 0,
  35. "ignoreWasSetByUser": 0,
  36. "inputAbbreviatedPath": "\/css\/font-awesome.min.css",
  37. "outputAbbreviatedPath": "No Output Path",
  38. "outputPathIsOutsideProject": 0,
  39. "outputPathIsSetByUser": 0
  40. },
  41. "\/css\/github.min.css": {
  42. "fileType": 16,
  43. "ignore": 0,
  44. "ignoreWasSetByUser": 0,
  45. "inputAbbreviatedPath": "\/css\/github.min.css",
  46. "outputAbbreviatedPath": "No Output Path",
  47. "outputPathIsOutsideProject": 0,
  48. "outputPathIsSetByUser": 0
  49. },
  50. "\/css\/gogs.css": {
  51. "fileType": 16,
  52. "ignore": 1,
  53. "ignoreWasSetByUser": 0,
  54. "inputAbbreviatedPath": "\/css\/gogs.css",
  55. "outputAbbreviatedPath": "No Output Path",
  56. "outputPathIsOutsideProject": 0,
  57. "outputPathIsSetByUser": 0
  58. },
  59. "\/css\/gogs.min.css": {
  60. "fileType": 16,
  61. "ignore": 1,
  62. "ignoreWasSetByUser": 0,
  63. "inputAbbreviatedPath": "\/css\/gogs.min.css",
  64. "outputAbbreviatedPath": "No Output Path",
  65. "outputPathIsOutsideProject": 0,
  66. "outputPathIsSetByUser": 0
  67. },
  68. "\/css\/markdown.css": {
  69. "fileType": 16,
  70. "ignore": 0,
  71. "ignoreWasSetByUser": 0,
  72. "inputAbbreviatedPath": "\/css\/markdown.css",
  73. "outputAbbreviatedPath": "No Output Path",
  74. "outputPathIsOutsideProject": 0,
  75. "outputPathIsSetByUser": 0
  76. },
  77. "\/css\/semantic.min.css": {
  78. "fileType": 16,
  79. "ignore": 0,
  80. "ignoreWasSetByUser": 0,
  81. "inputAbbreviatedPath": "\/css\/semantic.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. "\/css\/todc-bootstrap.min.css": {
  98. "fileType": 16,
  99. "ignore": 0,
  100. "ignoreWasSetByUser": 0,
  101. "inputAbbreviatedPath": "\/css\/todc-bootstrap.min.css",
  102. "outputAbbreviatedPath": "No Output Path",
  103. "outputPathIsOutsideProject": 0,
  104. "outputPathIsSetByUser": 0
  105. },
  106. "\/img\/404.png": {
  107. "fileType": 32768,
  108. "ignore": 0,
  109. "ignoreWasSetByUser": 0,
  110. "initialSize": 9754,
  111. "inputAbbreviatedPath": "\/img\/404.png",
  112. "outputAbbreviatedPath": "\/img\/404.png",
  113. "outputPathIsOutsideProject": 0,
  114. "outputPathIsSetByUser": 0,
  115. "processed": 1
  116. },
  117. "\/img\/500.png": {
  118. "fileType": 32768,
  119. "ignore": 0,
  120. "ignoreWasSetByUser": 0,
  121. "initialSize": 12066,
  122. "inputAbbreviatedPath": "\/img\/500.png",
  123. "outputAbbreviatedPath": "\/img\/500.png",
  124. "outputPathIsOutsideProject": 0,
  125. "outputPathIsSetByUser": 0,
  126. "processed": 1
  127. },
  128. "\/img\/avatar_default.jpg": {
  129. "fileType": 16384,
  130. "ignore": 0,
  131. "ignoreWasSetByUser": 0,
  132. "initialSize": 6238,
  133. "inputAbbreviatedPath": "\/img\/avatar_default.jpg",
  134. "outputAbbreviatedPath": "\/img\/avatar_default.jpg",
  135. "outputPathIsOutsideProject": 0,
  136. "outputPathIsSetByUser": 0,
  137. "processed": 1
  138. },
  139. "\/img\/bootstrap-colorpicker\/alpha-horizontal.png": {
  140. "fileType": 32768,
  141. "ignore": 0,
  142. "ignoreWasSetByUser": 0,
  143. "initialSize": 3635,
  144. "inputAbbreviatedPath": "\/img\/bootstrap-colorpicker\/alpha-horizontal.png",
  145. "outputAbbreviatedPath": "\/img\/bootstrap-colorpicker\/alpha-horizontal.png",
  146. "outputPathIsOutsideProject": 0,
  147. "outputPathIsSetByUser": 0,
  148. "processed": 0
  149. },
  150. "\/img\/bootstrap-colorpicker\/alpha.png": {
  151. "fileType": 32768,
  152. "ignore": 0,
  153. "ignoreWasSetByUser": 0,
  154. "initialSize": 3271,
  155. "inputAbbreviatedPath": "\/img\/bootstrap-colorpicker\/alpha.png",
  156. "outputAbbreviatedPath": "\/img\/bootstrap-colorpicker\/alpha.png",
  157. "outputPathIsOutsideProject": 0,
  158. "outputPathIsSetByUser": 0,
  159. "processed": 0
  160. },
  161. "\/img\/bootstrap-colorpicker\/hue-horizontal.png": {
  162. "fileType": 32768,
  163. "ignore": 0,
  164. "ignoreWasSetByUser": 0,
  165. "initialSize": 2837,
  166. "inputAbbreviatedPath": "\/img\/bootstrap-colorpicker\/hue-horizontal.png",
  167. "outputAbbreviatedPath": "\/img\/bootstrap-colorpicker\/hue-horizontal.png",
  168. "outputPathIsOutsideProject": 0,
  169. "outputPathIsSetByUser": 0,
  170. "processed": 0
  171. },
  172. "\/img\/bootstrap-colorpicker\/hue.png": {
  173. "fileType": 32768,
  174. "ignore": 0,
  175. "ignoreWasSetByUser": 0,
  176. "initialSize": 2972,
  177. "inputAbbreviatedPath": "\/img\/bootstrap-colorpicker\/hue.png",
  178. "outputAbbreviatedPath": "\/img\/bootstrap-colorpicker\/hue.png",
  179. "outputPathIsOutsideProject": 0,
  180. "outputPathIsSetByUser": 0,
  181. "processed": 0
  182. },
  183. "\/img\/bootstrap-colorpicker\/saturation.png": {
  184. "fileType": 32768,
  185. "ignore": 0,
  186. "ignoreWasSetByUser": 0,
  187. "initialSize": 8817,
  188. "inputAbbreviatedPath": "\/img\/bootstrap-colorpicker\/saturation.png",
  189. "outputAbbreviatedPath": "\/img\/bootstrap-colorpicker\/saturation.png",
  190. "outputPathIsOutsideProject": 0,
  191. "outputPathIsSetByUser": 0,
  192. "processed": 0
  193. },
  194. "\/img\/checkmark.png": {
  195. "fileType": 32768,
  196. "ignore": 0,
  197. "ignoreWasSetByUser": 0,
  198. "initialSize": 169,
  199. "inputAbbreviatedPath": "\/img\/checkmark.png",
  200. "outputAbbreviatedPath": "\/img\/checkmark.png",
  201. "outputPathIsOutsideProject": 0,
  202. "outputPathIsSetByUser": 0,
  203. "processed": 1
  204. },
  205. "\/img\/favicon.png": {
  206. "fileType": 32768,
  207. "ignore": 0,
  208. "ignoreWasSetByUser": 0,
  209. "initialSize": 10305,
  210. "inputAbbreviatedPath": "\/img\/favicon.png",
  211. "outputAbbreviatedPath": "\/img\/favicon.png",
  212. "outputPathIsOutsideProject": 0,
  213. "outputPathIsSetByUser": 0,
  214. "processed": 1
  215. },
  216. "\/img\/gogs-lg.png": {
  217. "fileType": 32768,
  218. "ignore": 0,
  219. "ignoreWasSetByUser": 0,
  220. "initialSize": 97903,
  221. "inputAbbreviatedPath": "\/img\/gogs-lg.png",
  222. "outputAbbreviatedPath": "\/img\/gogs-lg.png",
  223. "outputPathIsOutsideProject": 0,
  224. "outputPathIsSetByUser": 0,
  225. "processed": 1
  226. },
  227. "\/js\/app.js": {
  228. "fileType": 64,
  229. "ignore": 0,
  230. "ignoreWasSetByUser": 0,
  231. "inputAbbreviatedPath": "\/js\/app.js",
  232. "outputAbbreviatedPath": "\/js\/min\/app-min.js",
  233. "outputPathIsOutsideProject": 0,
  234. "outputPathIsSetByUser": 0,
  235. "outputStyle": 1,
  236. "syntaxCheckerStyle": 1
  237. },
  238. "\/js\/bootstrap-colorpicker.min.js": {
  239. "fileType": 64,
  240. "ignore": 0,
  241. "ignoreWasSetByUser": 0,
  242. "inputAbbreviatedPath": "\/js\/bootstrap-colorpicker.min.js",
  243. "outputAbbreviatedPath": "\/js\/min\/bootstrap-colorpicker.min-min.js",
  244. "outputPathIsOutsideProject": 0,
  245. "outputPathIsSetByUser": 0,
  246. "outputStyle": 1,
  247. "syntaxCheckerStyle": 1
  248. },
  249. "\/js\/bootstrap-datepicker.js": {
  250. "fileType": 64,
  251. "ignore": 0,
  252. "ignoreWasSetByUser": 0,
  253. "inputAbbreviatedPath": "\/js\/bootstrap-datepicker.js",
  254. "outputAbbreviatedPath": "\/js\/min\/bootstrap-datepicker-min.js",
  255. "outputPathIsOutsideProject": 0,
  256. "outputPathIsSetByUser": 0,
  257. "outputStyle": 1,
  258. "syntaxCheckerStyle": 1
  259. },
  260. "\/js\/bootstrap.min.js": {
  261. "fileType": 64,
  262. "ignore": 0,
  263. "ignoreWasSetByUser": 0,
  264. "inputAbbreviatedPath": "\/js\/bootstrap.min.js",
  265. "outputAbbreviatedPath": "\/js\/min\/bootstrap.min-min.js",
  266. "outputPathIsOutsideProject": 0,
  267. "outputPathIsSetByUser": 0,
  268. "outputStyle": 1,
  269. "syntaxCheckerStyle": 1
  270. },
  271. "\/js\/gogs.js": {
  272. "fileType": 64,
  273. "ignore": 0,
  274. "ignoreWasSetByUser": 0,
  275. "inputAbbreviatedPath": "\/js\/gogs.js",
  276. "outputAbbreviatedPath": "\/js\/min\/gogs-min.js",
  277. "outputPathIsOutsideProject": 0,
  278. "outputPathIsSetByUser": 0,
  279. "outputStyle": 1,
  280. "syntaxCheckerStyle": 1
  281. },
  282. "\/js\/jquery-1.10.1.min.js": {
  283. "fileType": 64,
  284. "ignore": 0,
  285. "ignoreWasSetByUser": 0,
  286. "inputAbbreviatedPath": "\/js\/jquery-1.10.1.min.js",
  287. "outputAbbreviatedPath": "\/js\/min\/jquery-1.10.1.min-min.js",
  288. "outputPathIsOutsideProject": 0,
  289. "outputPathIsSetByUser": 0,
  290. "outputStyle": 1,
  291. "syntaxCheckerStyle": 1
  292. },
  293. "\/js\/jquery-1.11.2.min.js": {
  294. "fileType": 64,
  295. "ignore": 0,
  296. "ignoreWasSetByUser": 0,
  297. "inputAbbreviatedPath": "\/js\/jquery-1.11.2.min.js",
  298. "outputAbbreviatedPath": "\/js\/min\/jquery-1.11.2.min-min.js",
  299. "outputPathIsOutsideProject": 0,
  300. "outputPathIsSetByUser": 0,
  301. "outputStyle": 1,
  302. "syntaxCheckerStyle": 1
  303. },
  304. "\/js\/jquery.validate.min.js": {
  305. "fileType": 64,
  306. "ignore": 0,
  307. "ignoreWasSetByUser": 0,
  308. "inputAbbreviatedPath": "\/js\/jquery.validate.min.js",
  309. "outputAbbreviatedPath": "\/js\/min\/jquery.validate.min-min.js",
  310. "outputPathIsOutsideProject": 0,
  311. "outputPathIsSetByUser": 0,
  312. "outputStyle": 1,
  313. "syntaxCheckerStyle": 1
  314. },
  315. "\/js\/lib.js": {
  316. "fileType": 64,
  317. "ignore": 0,
  318. "ignoreWasSetByUser": 0,
  319. "inputAbbreviatedPath": "\/js\/lib.js",
  320. "outputAbbreviatedPath": "\/js\/min\/lib-min.js",
  321. "outputPathIsOutsideProject": 0,
  322. "outputPathIsSetByUser": 0,
  323. "outputStyle": 1,
  324. "syntaxCheckerStyle": 1
  325. },
  326. "\/js\/locales\/bootstrap-datepicker.ar.js": {
  327. "fileType": 64,
  328. "ignore": 0,
  329. "ignoreWasSetByUser": 0,
  330. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.ar.js",
  331. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.ar-min.js",
  332. "outputPathIsOutsideProject": 0,
  333. "outputPathIsSetByUser": 0,
  334. "outputStyle": 1,
  335. "syntaxCheckerStyle": 1
  336. },
  337. "\/js\/locales\/bootstrap-datepicker.az.js": {
  338. "fileType": 64,
  339. "ignore": 0,
  340. "ignoreWasSetByUser": 0,
  341. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.az.js",
  342. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.az-min.js",
  343. "outputPathIsOutsideProject": 0,
  344. "outputPathIsSetByUser": 0,
  345. "outputStyle": 1,
  346. "syntaxCheckerStyle": 1
  347. },
  348. "\/js\/locales\/bootstrap-datepicker.bg.js": {
  349. "fileType": 64,
  350. "ignore": 0,
  351. "ignoreWasSetByUser": 0,
  352. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.bg.js",
  353. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.bg-min.js",
  354. "outputPathIsOutsideProject": 0,
  355. "outputPathIsSetByUser": 0,
  356. "outputStyle": 1,
  357. "syntaxCheckerStyle": 1
  358. },
  359. "\/js\/locales\/bootstrap-datepicker.ca.js": {
  360. "fileType": 64,
  361. "ignore": 0,
  362. "ignoreWasSetByUser": 0,
  363. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.ca.js",
  364. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.ca-min.js",
  365. "outputPathIsOutsideProject": 0,
  366. "outputPathIsSetByUser": 0,
  367. "outputStyle": 1,
  368. "syntaxCheckerStyle": 1
  369. },
  370. "\/js\/locales\/bootstrap-datepicker.cs.js": {
  371. "fileType": 64,
  372. "ignore": 0,
  373. "ignoreWasSetByUser": 0,
  374. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.cs.js",
  375. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.cs-min.js",
  376. "outputPathIsOutsideProject": 0,
  377. "outputPathIsSetByUser": 0,
  378. "outputStyle": 1,
  379. "syntaxCheckerStyle": 1
  380. },
  381. "\/js\/locales\/bootstrap-datepicker.cy.js": {
  382. "fileType": 64,
  383. "ignore": 0,
  384. "ignoreWasSetByUser": 0,
  385. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.cy.js",
  386. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.cy-min.js",
  387. "outputPathIsOutsideProject": 0,
  388. "outputPathIsSetByUser": 0,
  389. "outputStyle": 1,
  390. "syntaxCheckerStyle": 1
  391. },
  392. "\/js\/locales\/bootstrap-datepicker.da.js": {
  393. "fileType": 64,
  394. "ignore": 0,
  395. "ignoreWasSetByUser": 0,
  396. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.da.js",
  397. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.da-min.js",
  398. "outputPathIsOutsideProject": 0,
  399. "outputPathIsSetByUser": 0,
  400. "outputStyle": 1,
  401. "syntaxCheckerStyle": 1
  402. },
  403. "\/js\/locales\/bootstrap-datepicker.de.js": {
  404. "fileType": 64,
  405. "ignore": 0,
  406. "ignoreWasSetByUser": 0,
  407. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.de.js",
  408. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.de-min.js",
  409. "outputPathIsOutsideProject": 0,
  410. "outputPathIsSetByUser": 0,
  411. "outputStyle": 1,
  412. "syntaxCheckerStyle": 1
  413. },
  414. "\/js\/locales\/bootstrap-datepicker.el.js": {
  415. "fileType": 64,
  416. "ignore": 0,
  417. "ignoreWasSetByUser": 0,
  418. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.el.js",
  419. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.el-min.js",
  420. "outputPathIsOutsideProject": 0,
  421. "outputPathIsSetByUser": 0,
  422. "outputStyle": 1,
  423. "syntaxCheckerStyle": 1
  424. },
  425. "\/js\/locales\/bootstrap-datepicker.es.js": {
  426. "fileType": 64,
  427. "ignore": 0,
  428. "ignoreWasSetByUser": 0,
  429. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.es.js",
  430. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.es-min.js",
  431. "outputPathIsOutsideProject": 0,
  432. "outputPathIsSetByUser": 0,
  433. "outputStyle": 1,
  434. "syntaxCheckerStyle": 1
  435. },
  436. "\/js\/locales\/bootstrap-datepicker.et.js": {
  437. "fileType": 64,
  438. "ignore": 0,
  439. "ignoreWasSetByUser": 0,
  440. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.et.js",
  441. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.et-min.js",
  442. "outputPathIsOutsideProject": 0,
  443. "outputPathIsSetByUser": 0,
  444. "outputStyle": 1,
  445. "syntaxCheckerStyle": 1
  446. },
  447. "\/js\/locales\/bootstrap-datepicker.fa.js": {
  448. "fileType": 64,
  449. "ignore": 0,
  450. "ignoreWasSetByUser": 0,
  451. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.fa.js",
  452. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.fa-min.js",
  453. "outputPathIsOutsideProject": 0,
  454. "outputPathIsSetByUser": 0,
  455. "outputStyle": 1,
  456. "syntaxCheckerStyle": 1
  457. },
  458. "\/js\/locales\/bootstrap-datepicker.fi.js": {
  459. "fileType": 64,
  460. "ignore": 0,
  461. "ignoreWasSetByUser": 0,
  462. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.fi.js",
  463. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.fi-min.js",
  464. "outputPathIsOutsideProject": 0,
  465. "outputPathIsSetByUser": 0,
  466. "outputStyle": 1,
  467. "syntaxCheckerStyle": 1
  468. },
  469. "\/js\/locales\/bootstrap-datepicker.fr.js": {
  470. "fileType": 64,
  471. "ignore": 0,
  472. "ignoreWasSetByUser": 0,
  473. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.fr.js",
  474. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.fr-min.js",
  475. "outputPathIsOutsideProject": 0,
  476. "outputPathIsSetByUser": 0,
  477. "outputStyle": 1,
  478. "syntaxCheckerStyle": 1
  479. },
  480. "\/js\/locales\/bootstrap-datepicker.gl.js": {
  481. "fileType": 64,
  482. "ignore": 0,
  483. "ignoreWasSetByUser": 0,
  484. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.gl.js",
  485. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.gl-min.js",
  486. "outputPathIsOutsideProject": 0,
  487. "outputPathIsSetByUser": 0,
  488. "outputStyle": 1,
  489. "syntaxCheckerStyle": 1
  490. },
  491. "\/js\/locales\/bootstrap-datepicker.he.js": {
  492. "fileType": 64,
  493. "ignore": 0,
  494. "ignoreWasSetByUser": 0,
  495. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.he.js",
  496. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.he-min.js",
  497. "outputPathIsOutsideProject": 0,
  498. "outputPathIsSetByUser": 0,
  499. "outputStyle": 1,
  500. "syntaxCheckerStyle": 1
  501. },
  502. "\/js\/locales\/bootstrap-datepicker.hr.js": {
  503. "fileType": 64,
  504. "ignore": 0,
  505. "ignoreWasSetByUser": 0,
  506. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.hr.js",
  507. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.hr-min.js",
  508. "outputPathIsOutsideProject": 0,
  509. "outputPathIsSetByUser": 0,
  510. "outputStyle": 1,
  511. "syntaxCheckerStyle": 1
  512. },
  513. "\/js\/locales\/bootstrap-datepicker.hu.js": {
  514. "fileType": 64,
  515. "ignore": 0,
  516. "ignoreWasSetByUser": 0,
  517. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.hu.js",
  518. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.hu-min.js",
  519. "outputPathIsOutsideProject": 0,
  520. "outputPathIsSetByUser": 0,
  521. "outputStyle": 1,
  522. "syntaxCheckerStyle": 1
  523. },
  524. "\/js\/locales\/bootstrap-datepicker.id.js": {
  525. "fileType": 64,
  526. "ignore": 0,
  527. "ignoreWasSetByUser": 0,
  528. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.id.js",
  529. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.id-min.js",
  530. "outputPathIsOutsideProject": 0,
  531. "outputPathIsSetByUser": 0,
  532. "outputStyle": 1,
  533. "syntaxCheckerStyle": 1
  534. },
  535. "\/js\/locales\/bootstrap-datepicker.is.js": {
  536. "fileType": 64,
  537. "ignore": 0,
  538. "ignoreWasSetByUser": 0,
  539. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.is.js",
  540. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.is-min.js",
  541. "outputPathIsOutsideProject": 0,
  542. "outputPathIsSetByUser": 0,
  543. "outputStyle": 1,
  544. "syntaxCheckerStyle": 1
  545. },
  546. "\/js\/locales\/bootstrap-datepicker.it.js": {
  547. "fileType": 64,
  548. "ignore": 0,
  549. "ignoreWasSetByUser": 0,
  550. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.it.js",
  551. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.it-min.js",
  552. "outputPathIsOutsideProject": 0,
  553. "outputPathIsSetByUser": 0,
  554. "outputStyle": 1,
  555. "syntaxCheckerStyle": 1
  556. },
  557. "\/js\/locales\/bootstrap-datepicker.ja.js": {
  558. "fileType": 64,
  559. "ignore": 0,
  560. "ignoreWasSetByUser": 0,
  561. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.ja.js",
  562. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.ja-min.js",
  563. "outputPathIsOutsideProject": 0,
  564. "outputPathIsSetByUser": 0,
  565. "outputStyle": 1,
  566. "syntaxCheckerStyle": 1
  567. },
  568. "\/js\/locales\/bootstrap-datepicker.ka.js": {
  569. "fileType": 64,
  570. "ignore": 0,
  571. "ignoreWasSetByUser": 0,
  572. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.ka.js",
  573. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.ka-min.js",
  574. "outputPathIsOutsideProject": 0,
  575. "outputPathIsSetByUser": 0,
  576. "outputStyle": 1,
  577. "syntaxCheckerStyle": 1
  578. },
  579. "\/js\/locales\/bootstrap-datepicker.kk.js": {
  580. "fileType": 64,
  581. "ignore": 0,
  582. "ignoreWasSetByUser": 0,
  583. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.kk.js",
  584. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.kk-min.js",
  585. "outputPathIsOutsideProject": 0,
  586. "outputPathIsSetByUser": 0,
  587. "outputStyle": 1,
  588. "syntaxCheckerStyle": 1
  589. },
  590. "\/js\/locales\/bootstrap-datepicker.kr.js": {
  591. "fileType": 64,
  592. "ignore": 0,
  593. "ignoreWasSetByUser": 0,
  594. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.kr.js",
  595. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.kr-min.js",
  596. "outputPathIsOutsideProject": 0,
  597. "outputPathIsSetByUser": 0,
  598. "outputStyle": 1,
  599. "syntaxCheckerStyle": 1
  600. },
  601. "\/js\/locales\/bootstrap-datepicker.lt.js": {
  602. "fileType": 64,
  603. "ignore": 0,
  604. "ignoreWasSetByUser": 0,
  605. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.lt.js",
  606. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.lt-min.js",
  607. "outputPathIsOutsideProject": 0,
  608. "outputPathIsSetByUser": 0,
  609. "outputStyle": 1,
  610. "syntaxCheckerStyle": 1
  611. },
  612. "\/js\/locales\/bootstrap-datepicker.lv.js": {
  613. "fileType": 64,
  614. "ignore": 0,
  615. "ignoreWasSetByUser": 0,
  616. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.lv.js",
  617. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.lv-min.js",
  618. "outputPathIsOutsideProject": 0,
  619. "outputPathIsSetByUser": 0,
  620. "outputStyle": 1,
  621. "syntaxCheckerStyle": 1
  622. },
  623. "\/js\/locales\/bootstrap-datepicker.mk.js": {
  624. "fileType": 64,
  625. "ignore": 0,
  626. "ignoreWasSetByUser": 0,
  627. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.mk.js",
  628. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.mk-min.js",
  629. "outputPathIsOutsideProject": 0,
  630. "outputPathIsSetByUser": 0,
  631. "outputStyle": 1,
  632. "syntaxCheckerStyle": 1
  633. },
  634. "\/js\/locales\/bootstrap-datepicker.ms.js": {
  635. "fileType": 64,
  636. "ignore": 0,
  637. "ignoreWasSetByUser": 0,
  638. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.ms.js",
  639. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.ms-min.js",
  640. "outputPathIsOutsideProject": 0,
  641. "outputPathIsSetByUser": 0,
  642. "outputStyle": 1,
  643. "syntaxCheckerStyle": 1
  644. },
  645. "\/js\/locales\/bootstrap-datepicker.nb.js": {
  646. "fileType": 64,
  647. "ignore": 0,
  648. "ignoreWasSetByUser": 0,
  649. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.nb.js",
  650. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.nb-min.js",
  651. "outputPathIsOutsideProject": 0,
  652. "outputPathIsSetByUser": 0,
  653. "outputStyle": 1,
  654. "syntaxCheckerStyle": 1
  655. },
  656. "\/js\/locales\/bootstrap-datepicker.nl-BE.js": {
  657. "fileType": 64,
  658. "ignore": 0,
  659. "ignoreWasSetByUser": 0,
  660. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.nl-BE.js",
  661. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.nl-BE-min.js",
  662. "outputPathIsOutsideProject": 0,
  663. "outputPathIsSetByUser": 0,
  664. "outputStyle": 1,
  665. "syntaxCheckerStyle": 1
  666. },
  667. "\/js\/locales\/bootstrap-datepicker.nl.js": {
  668. "fileType": 64,
  669. "ignore": 0,
  670. "ignoreWasSetByUser": 0,
  671. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.nl.js",
  672. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.nl-min.js",
  673. "outputPathIsOutsideProject": 0,
  674. "outputPathIsSetByUser": 0,
  675. "outputStyle": 1,
  676. "syntaxCheckerStyle": 1
  677. },
  678. "\/js\/locales\/bootstrap-datepicker.no.js": {
  679. "fileType": 64,
  680. "ignore": 0,
  681. "ignoreWasSetByUser": 0,
  682. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.no.js",
  683. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.no-min.js",
  684. "outputPathIsOutsideProject": 0,
  685. "outputPathIsSetByUser": 0,
  686. "outputStyle": 1,
  687. "syntaxCheckerStyle": 1
  688. },
  689. "\/js\/locales\/bootstrap-datepicker.pl.js": {
  690. "fileType": 64,
  691. "ignore": 0,
  692. "ignoreWasSetByUser": 0,
  693. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.pl.js",
  694. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.pl-min.js",
  695. "outputPathIsOutsideProject": 0,
  696. "outputPathIsSetByUser": 0,
  697. "outputStyle": 1,
  698. "syntaxCheckerStyle": 1
  699. },
  700. "\/js\/locales\/bootstrap-datepicker.pt-BR.js": {
  701. "fileType": 64,
  702. "ignore": 0,
  703. "ignoreWasSetByUser": 0,
  704. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.pt-BR.js",
  705. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.pt-BR-min.js",
  706. "outputPathIsOutsideProject": 0,
  707. "outputPathIsSetByUser": 0,
  708. "outputStyle": 1,
  709. "syntaxCheckerStyle": 1
  710. },
  711. "\/js\/locales\/bootstrap-datepicker.pt.js": {
  712. "fileType": 64,
  713. "ignore": 0,
  714. "ignoreWasSetByUser": 0,
  715. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.pt.js",
  716. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.pt-min.js",
  717. "outputPathIsOutsideProject": 0,
  718. "outputPathIsSetByUser": 0,
  719. "outputStyle": 1,
  720. "syntaxCheckerStyle": 1
  721. },
  722. "\/js\/locales\/bootstrap-datepicker.ro.js": {
  723. "fileType": 64,
  724. "ignore": 0,
  725. "ignoreWasSetByUser": 0,
  726. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.ro.js",
  727. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.ro-min.js",
  728. "outputPathIsOutsideProject": 0,
  729. "outputPathIsSetByUser": 0,
  730. "outputStyle": 1,
  731. "syntaxCheckerStyle": 1
  732. },
  733. "\/js\/locales\/bootstrap-datepicker.rs-latin.js": {
  734. "fileType": 64,
  735. "ignore": 0,
  736. "ignoreWasSetByUser": 0,
  737. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.rs-latin.js",
  738. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.rs-latin-min.js",
  739. "outputPathIsOutsideProject": 0,
  740. "outputPathIsSetByUser": 0,
  741. "outputStyle": 1,
  742. "syntaxCheckerStyle": 1
  743. },
  744. "\/js\/locales\/bootstrap-datepicker.rs.js": {
  745. "fileType": 64,
  746. "ignore": 0,
  747. "ignoreWasSetByUser": 0,
  748. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.rs.js",
  749. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.rs-min.js",
  750. "outputPathIsOutsideProject": 0,
  751. "outputPathIsSetByUser": 0,
  752. "outputStyle": 1,
  753. "syntaxCheckerStyle": 1
  754. },
  755. "\/js\/locales\/bootstrap-datepicker.ru.js": {
  756. "fileType": 64,
  757. "ignore": 0,
  758. "ignoreWasSetByUser": 0,
  759. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.ru.js",
  760. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.ru-min.js",
  761. "outputPathIsOutsideProject": 0,
  762. "outputPathIsSetByUser": 0,
  763. "outputStyle": 1,
  764. "syntaxCheckerStyle": 1
  765. },
  766. "\/js\/locales\/bootstrap-datepicker.sk.js": {
  767. "fileType": 64,
  768. "ignore": 0,
  769. "ignoreWasSetByUser": 0,
  770. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.sk.js",
  771. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.sk-min.js",
  772. "outputPathIsOutsideProject": 0,
  773. "outputPathIsSetByUser": 0,
  774. "outputStyle": 1,
  775. "syntaxCheckerStyle": 1
  776. },
  777. "\/js\/locales\/bootstrap-datepicker.sl.js": {
  778. "fileType": 64,
  779. "ignore": 0,
  780. "ignoreWasSetByUser": 0,
  781. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.sl.js",
  782. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.sl-min.js",
  783. "outputPathIsOutsideProject": 0,
  784. "outputPathIsSetByUser": 0,
  785. "outputStyle": 1,
  786. "syntaxCheckerStyle": 1
  787. },
  788. "\/js\/locales\/bootstrap-datepicker.sq.js": {
  789. "fileType": 64,
  790. "ignore": 0,
  791. "ignoreWasSetByUser": 0,
  792. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.sq.js",
  793. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.sq-min.js",
  794. "outputPathIsOutsideProject": 0,
  795. "outputPathIsSetByUser": 0,
  796. "outputStyle": 1,
  797. "syntaxCheckerStyle": 1
  798. },
  799. "\/js\/locales\/bootstrap-datepicker.sv.js": {
  800. "fileType": 64,
  801. "ignore": 0,
  802. "ignoreWasSetByUser": 0,
  803. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.sv.js",
  804. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.sv-min.js",
  805. "outputPathIsOutsideProject": 0,
  806. "outputPathIsSetByUser": 0,
  807. "outputStyle": 1,
  808. "syntaxCheckerStyle": 1
  809. },
  810. "\/js\/locales\/bootstrap-datepicker.sw.js": {
  811. "fileType": 64,
  812. "ignore": 0,
  813. "ignoreWasSetByUser": 0,
  814. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.sw.js",
  815. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.sw-min.js",
  816. "outputPathIsOutsideProject": 0,
  817. "outputPathIsSetByUser": 0,
  818. "outputStyle": 1,
  819. "syntaxCheckerStyle": 1
  820. },
  821. "\/js\/locales\/bootstrap-datepicker.th.js": {
  822. "fileType": 64,
  823. "ignore": 0,
  824. "ignoreWasSetByUser": 0,
  825. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.th.js",
  826. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.th-min.js",
  827. "outputPathIsOutsideProject": 0,
  828. "outputPathIsSetByUser": 0,
  829. "outputStyle": 1,
  830. "syntaxCheckerStyle": 1
  831. },
  832. "\/js\/locales\/bootstrap-datepicker.tr.js": {
  833. "fileType": 64,
  834. "ignore": 0,
  835. "ignoreWasSetByUser": 0,
  836. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.tr.js",
  837. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.tr-min.js",
  838. "outputPathIsOutsideProject": 0,
  839. "outputPathIsSetByUser": 0,
  840. "outputStyle": 1,
  841. "syntaxCheckerStyle": 1
  842. },
  843. "\/js\/locales\/bootstrap-datepicker.ua.js": {
  844. "fileType": 64,
  845. "ignore": 0,
  846. "ignoreWasSetByUser": 0,
  847. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.ua.js",
  848. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.ua-min.js",
  849. "outputPathIsOutsideProject": 0,
  850. "outputPathIsSetByUser": 0,
  851. "outputStyle": 1,
  852. "syntaxCheckerStyle": 1
  853. },
  854. "\/js\/locales\/bootstrap-datepicker.vi.js": {
  855. "fileType": 64,
  856. "ignore": 0,
  857. "ignoreWasSetByUser": 0,
  858. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.vi.js",
  859. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.vi-min.js",
  860. "outputPathIsOutsideProject": 0,
  861. "outputPathIsSetByUser": 0,
  862. "outputStyle": 1,
  863. "syntaxCheckerStyle": 1
  864. },
  865. "\/js\/locales\/bootstrap-datepicker.zh-CN.js": {
  866. "fileType": 64,
  867. "ignore": 0,
  868. "ignoreWasSetByUser": 0,
  869. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.zh-CN.js",
  870. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.zh-CN-min.js",
  871. "outputPathIsOutsideProject": 0,
  872. "outputPathIsSetByUser": 0,
  873. "outputStyle": 1,
  874. "syntaxCheckerStyle": 1
  875. },
  876. "\/js\/locales\/bootstrap-datepicker.zh-TW.js": {
  877. "fileType": 64,
  878. "ignore": 0,
  879. "ignoreWasSetByUser": 0,
  880. "inputAbbreviatedPath": "\/js\/locales\/bootstrap-datepicker.zh-TW.js",
  881. "outputAbbreviatedPath": "\/js\/locales\/min\/bootstrap-datepicker.zh-TW-min.js",
  882. "outputPathIsOutsideProject": 0,
  883. "outputPathIsSetByUser": 0,
  884. "outputStyle": 1,
  885. "syntaxCheckerStyle": 1
  886. },
  887. "\/js\/min\/gogs-min.js": {
  888. "fileType": 64,
  889. "ignore": 1,
  890. "ignoreWasSetByUser": 0,
  891. "inputAbbreviatedPath": "\/js\/min\/gogs-min.js",
  892. "outputAbbreviatedPath": "\/js\/min\/min\/gogs-min-min.js",
  893. "outputPathIsOutsideProject": 0,
  894. "outputPathIsSetByUser": 0,
  895. "outputStyle": 1,
  896. "syntaxCheckerStyle": 1
  897. },
  898. "\/js\/semantic.min.js": {
  899. "fileType": 64,
  900. "ignore": 0,
  901. "ignoreWasSetByUser": 0,
  902. "inputAbbreviatedPath": "\/js\/semantic.min.js",
  903. "outputAbbreviatedPath": "\/js\/min\/semantic.min-min.js",
  904. "outputPathIsOutsideProject": 0,
  905. "outputPathIsSetByUser": 0,
  906. "outputStyle": 1,
  907. "syntaxCheckerStyle": 1
  908. },
  909. "\/less\/_base.less": {
  910. "allowInsecureImports": 0,
  911. "createSourceMap": 0,
  912. "disableJavascript": 0,
  913. "fileType": 1,
  914. "ieCompatibility": 1,
  915. "ignore": 1,
  916. "ignoreWasSetByUser": 0,
  917. "inputAbbreviatedPath": "\/less\/_base.less",
  918. "outputAbbreviatedPath": "\/css\/_base.css",
  919. "outputPathIsOutsideProject": 0,
  920. "outputPathIsSetByUser": 0,
  921. "outputStyle": 0,
  922. "relativeURLS": 0,
  923. "shouldRunAutoprefixer": 0,
  924. "shouldRunBless": 0,
  925. "strictImports": 0,
  926. "strictMath": 0,
  927. "strictUnits": 0
  928. },
  929. "\/less\/_home.less": {
  930. "allowInsecureImports": 0,
  931. "createSourceMap": 0,
  932. "disableJavascript": 0,
  933. "fileType": 1,
  934. "ieCompatibility": 1,
  935. "ignore": 1,
  936. "ignoreWasSetByUser": 0,
  937. "inputAbbreviatedPath": "\/less\/_home.less",
  938. "outputAbbreviatedPath": "\/css\/_home.css",
  939. "outputPathIsOutsideProject": 0,
  940. "outputPathIsSetByUser": 0,
  941. "outputStyle": 0,
  942. "relativeURLS": 0,
  943. "shouldRunAutoprefixer": 0,
  944. "shouldRunBless": 0,
  945. "strictImports": 0,
  946. "strictMath": 0,
  947. "strictUnits": 0
  948. },
  949. "\/less\/_octicons.less": {
  950. "allowInsecureImports": 0,
  951. "createSourceMap": 0,
  952. "disableJavascript": 0,
  953. "fileType": 1,
  954. "ieCompatibility": 1,
  955. "ignore": 1,
  956. "ignoreWasSetByUser": 0,
  957. "inputAbbreviatedPath": "\/less\/_octicons.less",
  958. "outputAbbreviatedPath": "\/css\/_octicons.css",
  959. "outputPathIsOutsideProject": 0,
  960. "outputPathIsSetByUser": 0,
  961. "outputStyle": 0,
  962. "relativeURLS": 0,
  963. "shouldRunAutoprefixer": 0,
  964. "shouldRunBless": 0,
  965. "strictImports": 0,
  966. "strictMath": 0,
  967. "strictUnits": 0
  968. },
  969. "\/less\/gogs.less": {
  970. "allowInsecureImports": 0,
  971. "createSourceMap": 0,
  972. "disableJavascript": 0,
  973. "fileType": 1,
  974. "ieCompatibility": 1,
  975. "ignore": 0,
  976. "ignoreWasSetByUser": 0,
  977. "inputAbbreviatedPath": "\/less\/gogs.less",
  978. "outputAbbreviatedPath": "\/css\/gogs.min.css",
  979. "outputPathIsOutsideProject": 0,
  980. "outputPathIsSetByUser": 1,
  981. "outputStyle": 2,
  982. "relativeURLS": 0,
  983. "shouldRunAutoprefixer": 0,
  984. "shouldRunBless": 0,
  985. "strictImports": 0,
  986. "strictMath": 0,
  987. "strictUnits": 0
  988. },
  989. "\/ng\/css\/gogs.css": {
  990. "fileType": 16,
  991. "ignore": 1,
  992. "ignoreWasSetByUser": 0,
  993. "inputAbbreviatedPath": "\/ng\/css\/gogs.css",
  994. "outputAbbreviatedPath": "No Output Path",
  995. "outputPathIsOutsideProject": 0,
  996. "outputPathIsSetByUser": 0
  997. },
  998. "\/ng\/css\/magnific-popup.css": {
  999. "fileType": 16,
  1000. "ignore": 0,
  1001. "ignoreWasSetByUser": 0,
  1002. "inputAbbreviatedPath": "\/ng\/css\/magnific-popup.css",
  1003. "outputAbbreviatedPath": "No Output Path",
  1004. "outputPathIsOutsideProject": 0,
  1005. "outputPathIsSetByUser": 0
  1006. },
  1007. "\/ng\/css\/tipsy.css": {
  1008. "fileType": 16,
  1009. "ignore": 0,
  1010. "ignoreWasSetByUser": 0,
  1011. "inputAbbreviatedPath": "\/ng\/css\/tipsy.css",
  1012. "outputAbbreviatedPath": "No Output Path",
  1013. "outputPathIsOutsideProject": 0,
  1014. "outputPathIsSetByUser": 0
  1015. },
  1016. "\/ng\/css\/ui.css": {
  1017. "fileType": 16,
  1018. "ignore": 1,
  1019. "ignoreWasSetByUser": 0,
  1020. "inputAbbreviatedPath": "\/ng\/css\/ui.css",
  1021. "outputAbbreviatedPath": "No Output Path",
  1022. "outputPathIsOutsideProject": 0,
  1023. "outputPathIsSetByUser": 0
  1024. },
  1025. "\/ng\/fonts\/octicons.css": {
  1026. "fileType": 16,
  1027. "ignore": 0,
  1028. "ignoreWasSetByUser": 0,
  1029. "inputAbbreviatedPath": "\/ng\/fonts\/octicons.css",
  1030. "outputAbbreviatedPath": "No Output Path",
  1031. "outputPathIsOutsideProject": 0,
  1032. "outputPathIsSetByUser": 0
  1033. },
  1034. "\/ng\/js\/gogs.js": {
  1035. "fileType": 64,
  1036. "ignore": 0,
  1037. "ignoreWasSetByUser": 0,
  1038. "inputAbbreviatedPath": "\/ng\/js\/gogs.js",
  1039. "outputAbbreviatedPath": "\/ng\/js\/min\/gogs-min.js",
  1040. "outputPathIsOutsideProject": 0,
  1041. "outputPathIsSetByUser": 0,
  1042. "outputStyle": 1,
  1043. "syntaxCheckerStyle": 1
  1044. },
  1045. "\/ng\/js\/gogs\/issue_label.js": {
  1046. "fileType": 64,
  1047. "ignore": 1,
  1048. "ignoreWasSetByUser": 0,
  1049. "inputAbbreviatedPath": "\/ng\/js\/gogs\/issue_label.js",
  1050. "outputAbbreviatedPath": "\/ng\/js\/gogs\/min\/issue_label-min.js",
  1051. "outputPathIsOutsideProject": 0,
  1052. "outputPathIsSetByUser": 0,
  1053. "outputStyle": 1,
  1054. "syntaxCheckerStyle": 1
  1055. },
  1056. "\/ng\/js\/lib\/jquery-1.11.1.min.js": {
  1057. "fileType": 64,
  1058. "ignore": 1,
  1059. "ignoreWasSetByUser": 0,
  1060. "inputAbbreviatedPath": "\/ng\/js\/lib\/jquery-1.11.1.min.js",
  1061. "outputAbbreviatedPath": "\/ng\/js\/lib\/min\/jquery-1.11.1.min-min.js",
  1062. "outputPathIsOutsideProject": 0,
  1063. "outputPathIsSetByUser": 0,
  1064. "outputStyle": 1,
  1065. "syntaxCheckerStyle": 1
  1066. },
  1067. "\/ng\/js\/lib\/jquery.magnific-popup.min.js": {
  1068. "fileType": 64,
  1069. "ignore": 0,
  1070. "ignoreWasSetByUser": 0,
  1071. "inputAbbreviatedPath": "\/ng\/js\/lib\/jquery.magnific-popup.min.js",
  1072. "outputAbbreviatedPath": "\/ng\/js\/lib\/min\/jquery.magnific-popup.min-min.js",
  1073. "outputPathIsOutsideProject": 0,
  1074. "outputPathIsSetByUser": 0,
  1075. "outputStyle": 1,
  1076. "syntaxCheckerStyle": 1
  1077. },
  1078. "\/ng\/js\/lib\/jquery.tipsy.js": {
  1079. "fileType": 64,
  1080. "ignore": 1,
  1081. "ignoreWasSetByUser": 0,
  1082. "inputAbbreviatedPath": "\/ng\/js\/lib\/jquery.tipsy.js",
  1083. "outputAbbreviatedPath": "\/ng\/js\/lib\/min\/jquery.tipsy-min.js",
  1084. "outputPathIsOutsideProject": 0,
  1085. "outputPathIsSetByUser": 0,
  1086. "outputStyle": 1,
  1087. "syntaxCheckerStyle": 1
  1088. },
  1089. "\/ng\/js\/lib\/lib.js": {
  1090. "fileType": 64,
  1091. "ignore": 1,
  1092. "ignoreWasSetByUser": 0,
  1093. "inputAbbreviatedPath": "\/ng\/js\/lib\/lib.js",
  1094. "outputAbbreviatedPath": "\/ng\/js\/lib\/min\/lib-min.js",
  1095. "outputPathIsOutsideProject": 0,
  1096. "outputPathIsSetByUser": 0,
  1097. "outputStyle": 1,
  1098. "syntaxCheckerStyle": 1
  1099. },
  1100. "\/ng\/js\/min\/gogs-min.js": {
  1101. "fileType": 64,
  1102. "ignore": 1,
  1103. "ignoreWasSetByUser": 0,
  1104. "inputAbbreviatedPath": "\/ng\/js\/min\/gogs-min.js",
  1105. "outputAbbreviatedPath": "\/ng\/js\/min\/min\/gogs-min-min.js",
  1106. "outputPathIsOutsideProject": 0,
  1107. "outputPathIsSetByUser": 0,
  1108. "outputStyle": 1,
  1109. "syntaxCheckerStyle": 1
  1110. },
  1111. "\/ng\/js\/utils\/preview.js": {
  1112. "fileType": 64,
  1113. "ignore": 1,
  1114. "ignoreWasSetByUser": 0,
  1115. "inputAbbreviatedPath": "\/ng\/js\/utils\/preview.js",
  1116. "outputAbbreviatedPath": "\/ng\/js\/utils\/min\/preview-min.js",
  1117. "outputPathIsOutsideProject": 0,
  1118. "outputPathIsSetByUser": 0,
  1119. "outputStyle": 1,
  1120. "syntaxCheckerStyle": 1
  1121. },
  1122. "\/ng\/js\/utils\/tabs.js": {
  1123. "fileType": 64,
  1124. "ignore": 1,
  1125. "ignoreWasSetByUser": 0,
  1126. "inputAbbreviatedPath": "\/ng\/js\/utils\/tabs.js",
  1127. "outputAbbreviatedPath": "\/ng\/js\/utils\/min\/tabs-min.js",
  1128. "outputPathIsOutsideProject": 0,
  1129. "outputPathIsSetByUser": 0,
  1130. "outputStyle": 1,
  1131. "syntaxCheckerStyle": 1
  1132. },
  1133. "\/ng\/less\/gogs.less": {
  1134. "allowInsecureImports": 0,
  1135. "createSourceMap": 0,
  1136. "disableJavascript": 0,
  1137. "fileType": 1,
  1138. "ieCompatibility": 1,
  1139. "ignore": 0,
  1140. "ignoreWasSetByUser": 0,
  1141. "inputAbbreviatedPath": "\/ng\/less\/gogs.less",
  1142. "outputAbbreviatedPath": "\/ng\/css\/gogs.css",
  1143. "outputPathIsOutsideProject": 0,
  1144. "outputPathIsSetByUser": 0,
  1145. "outputStyle": 0,
  1146. "relativeURLS": 0,
  1147. "shouldRunAutoprefixer": 0,
  1148. "shouldRunBless": 0,
  1149. "strictImports": 0,
  1150. "strictMath": 0,
  1151. "strictUnits": 0
  1152. },
  1153. "\/ng\/less\/gogs\/admin.less": {
  1154. "allowInsecureImports": 0,
  1155. "createSourceMap": 0,
  1156. "disableJavascript": 0,
  1157. "fileType": 1,
  1158. "ieCompatibility": 1,
  1159. "ignore": 1,
  1160. "ignoreWasSetByUser": 0,
  1161. "inputAbbreviatedPath": "\/ng\/less\/gogs\/admin.less",
  1162. "outputAbbreviatedPath": "\/ng\/less\/css\/admin.css",
  1163. "outputPathIsOutsideProject": 0,
  1164. "outputPathIsSetByUser": 0,
  1165. "outputStyle": 0,
  1166. "relativeURLS": 0,
  1167. "shouldRunAutoprefixer": 0,
  1168. "shouldRunBless": 0,
  1169. "strictImports": 0,
  1170. "strictMath": 0,
  1171. "strictUnits": 0
  1172. },
  1173. "\/ng\/less\/gogs\/base.less": {
  1174. "allowInsecureImports": 0,
  1175. "createSourceMap": 0,
  1176. "disableJavascript": 0,
  1177. "fileType": 1,
  1178. "ieCompatibility": 1,
  1179. "ignore": 1,
  1180. "ignoreWasSetByUser": 0,
  1181. "inputAbbreviatedPath": "\/ng\/less\/gogs\/base.less",
  1182. "outputAbbreviatedPath": "\/ng\/less\/css\/base.css",
  1183. "outputPathIsOutsideProject": 0,
  1184. "outputPathIsSetByUser": 0,
  1185. "outputStyle": 0,
  1186. "relativeURLS": 0,
  1187. "shouldRunAutoprefixer": 0,
  1188. "shouldRunBless": 0,
  1189. "strictImports": 0,
  1190. "strictMath": 0,
  1191. "strictUnits": 0
  1192. },
  1193. "\/ng\/less\/gogs\/dashboard.less": {
  1194. "allowInsecureImports": 0,
  1195. "createSourceMap": 0,
  1196. "disableJavascript": 0,
  1197. "fileType": 1,
  1198. "ieCompatibility": 1,
  1199. "ignore": 1,
  1200. "ignoreWasSetByUser": 0,
  1201. "inputAbbreviatedPath": "\/ng\/less\/gogs\/dashboard.less",
  1202. "outputAbbreviatedPath": "\/ng\/less\/css\/dashboard.css",
  1203. "outputPathIsOutsideProject": 0,
  1204. "outputPathIsSetByUser": 0,
  1205. "outputStyle": 0,
  1206. "relativeURLS": 0,
  1207. "shouldRunAutoprefixer": 0,
  1208. "shouldRunBless": 0,
  1209. "strictImports": 0,
  1210. "strictMath": 0,
  1211. "strictUnits": 0
  1212. },
  1213. "\/ng\/less\/gogs\/external.less": {
  1214. "allowInsecureImports": 0,
  1215. "createSourceMap": 0,
  1216. "disableJavascript": 0,
  1217. "fileType": 1,
  1218. "ieCompatibility": 1,
  1219. "ignore": 1,
  1220. "ignoreWasSetByUser": 0,
  1221. "inputAbbreviatedPath": "\/ng\/less\/gogs\/external.less",
  1222. "outputAbbreviatedPath": "\/ng\/less\/css\/external.css",
  1223. "outputPathIsOutsideProject": 0,
  1224. "outputPathIsSetByUser": 0,
  1225. "outputStyle": 0,
  1226. "relativeURLS": 0,
  1227. "shouldRunAutoprefixer": 0,
  1228. "shouldRunBless": 0,
  1229. "strictImports": 0,
  1230. "strictMath": 0,
  1231. "strictUnits": 0
  1232. },
  1233. "\/ng\/less\/gogs\/issue.less": {
  1234. "allowInsecureImports": 0,
  1235. "createSourceMap": 0,
  1236. "disableJavascript": 0,
  1237. "fileType": 1,
  1238. "ieCompatibility": 1,
  1239. "ignore": 1,
  1240. "ignoreWasSetByUser": 0,
  1241. "inputAbbreviatedPath": "\/ng\/less\/gogs\/issue.less",
  1242. "outputAbbreviatedPath": "\/ng\/less\/css\/issue.css",
  1243. "outputPathIsOutsideProject": 0,
  1244. "outputPathIsSetByUser": 0,
  1245. "outputStyle": 0,
  1246. "relativeURLS": 0,
  1247. "shouldRunAutoprefixer": 0,
  1248. "shouldRunBless": 0,
  1249. "strictImports": 0,
  1250. "strictMath": 0,
  1251. "strictUnits": 0
  1252. },
  1253. "\/ng\/less\/gogs\/markdown.less": {
  1254. "allowInsecureImports": 0,
  1255. "createSourceMap": 0,
  1256. "disableJavascript": 0,
  1257. "fileType": 1,
  1258. "ieCompatibility": 1,
  1259. "ignore": 1,
  1260. "ignoreWasSetByUser": 0,
  1261. "inputAbbreviatedPath": "\/ng\/less\/gogs\/markdown.less",
  1262. "outputAbbreviatedPath": "\/ng\/less\/css\/markdown.css",
  1263. "outputPathIsOutsideProject": 0,
  1264. "outputPathIsSetByUser": 0,
  1265. "outputStyle": 0,
  1266. "relativeURLS": 0,
  1267. "shouldRunAutoprefixer": 0,
  1268. "shouldRunBless": 0,
  1269. "strictImports": 0,
  1270. "strictMath": 0,
  1271. "strictUnits": 0
  1272. },
  1273. "\/ng\/less\/gogs\/organization.less": {
  1274. "allowInsecureImports": 0,
  1275. "createSourceMap": 0,
  1276. "disableJavascript": 0,
  1277. "fileType": 1,
  1278. "ieCompatibility": 1,
  1279. "ignore": 1,
  1280. "ignoreWasSetByUser": 0,
  1281. "inputAbbreviatedPath": "\/ng\/less\/gogs\/organization.less",
  1282. "outputAbbreviatedPath": "\/ng\/less\/css\/organization.css",
  1283. "outputPathIsOutsideProject": 0,
  1284. "outputPathIsSetByUser": 0,
  1285. "outputStyle": 0,
  1286. "relativeURLS": 0,
  1287. "shouldRunAutoprefixer": 0,
  1288. "shouldRunBless": 0,
  1289. "strictImports": 0,
  1290. "strictMath": 0,
  1291. "strictUnits": 0
  1292. },
  1293. "\/ng\/less\/gogs\/profile.less": {
  1294. "allowInsecureImports": 0,
  1295. "createSourceMap": 0,
  1296. "disableJavascript": 0,
  1297. "fileType": 1,
  1298. "ieCompatibility": 1,
  1299. "ignore": 1,
  1300. "ignoreWasSetByUser": 0,
  1301. "inputAbbreviatedPath": "\/ng\/less\/gogs\/profile.less",
  1302. "outputAbbreviatedPath": "\/ng\/less\/css\/profile.css",
  1303. "outputPathIsOutsideProject": 0,
  1304. "outputPathIsSetByUser": 0,
  1305. "outputStyle": 0,
  1306. "relativeURLS": 0,
  1307. "shouldRunAutoprefixer": 0,
  1308. "shouldRunBless": 0,
  1309. "strictImports": 0,
  1310. "strictMath": 0,
  1311. "strictUnits": 0
  1312. },
  1313. "\/ng\/less\/gogs\/repository.less": {
  1314. "allowInsecureImports": 0,
  1315. "createSourceMap": 0,
  1316. "disableJavascript": 0,
  1317. "fileType": 1,
  1318. "ieCompatibility": 1,
  1319. "ignore": 1,
  1320. "ignoreWasSetByUser": 0,
  1321. "inputAbbreviatedPath": "\/ng\/less\/gogs\/repository.less",
  1322. "outputAbbreviatedPath": "\/ng\/less\/css\/repository.css",
  1323. "outputPathIsOutsideProject": 0,
  1324. "outputPathIsSetByUser": 0,
  1325. "outputStyle": 0,
  1326. "relativeURLS": 0,
  1327. "shouldRunAutoprefixer": 0,
  1328. "shouldRunBless": 0,
  1329. "strictImports": 0,
  1330. "strictMath": 0,
  1331. "strictUnits": 0
  1332. },
  1333. "\/ng\/less\/gogs\/settings.less": {
  1334. "allowInsecureImports": 0,
  1335. "createSourceMap": 0,
  1336. "disableJavascript": 0,
  1337. "fileType": 1,
  1338. "ieCompatibility": 1,
  1339. "ignore": 1,
  1340. "ignoreWasSetByUser": 0,
  1341. "inputAbbreviatedPath": "\/ng\/less\/gogs\/settings.less",
  1342. "outputAbbreviatedPath": "\/ng\/less\/css\/settings.css",
  1343. "outputPathIsOutsideProject": 0,
  1344. "outputPathIsSetByUser": 0,
  1345. "outputStyle": 0,
  1346. "relativeURLS": 0,
  1347. "shouldRunAutoprefixer": 0,
  1348. "shouldRunBless": 0,
  1349. "strictImports": 0,
  1350. "strictMath": 0,
  1351. "strictUnits": 0
  1352. },
  1353. "\/ng\/less\/gogs\/sign.less": {
  1354. "allowInsecureImports": 0,
  1355. "createSourceMap": 0,
  1356. "disableJavascript": 0,
  1357. "fileType": 1,
  1358. "ieCompatibility": 1,
  1359. "ignore": 1,
  1360. "ignoreWasSetByUser": 0,
  1361. "inputAbbreviatedPath": "\/ng\/less\/gogs\/sign.less",
  1362. "outputAbbreviatedPath": "\/ng\/less\/css\/sign.css",
  1363. "outputPathIsOutsideProject": 0,
  1364. "outputPathIsSetByUser": 0,
  1365. "outputStyle": 0,
  1366. "relativeURLS": 0,
  1367. "shouldRunAutoprefixer": 0,
  1368. "shouldRunBless": 0,
  1369. "strictImports": 0,
  1370. "strictMath": 0,
  1371. "strictUnits": 0
  1372. },
  1373. "\/ng\/less\/ui.less": {
  1374. "allowInsecureImports": 0,
  1375. "createSourceMap": 0,
  1376. "disableJavascript": 0,
  1377. "fileType": 1,
  1378. "ieCompatibility": 1,
  1379. "ignore": 0,
  1380. "ignoreWasSetByUser": 0,
  1381. "inputAbbreviatedPath": "\/ng\/less\/ui.less",
  1382. "outputAbbreviatedPath": "\/ng\/css\/ui.css",
  1383. "outputPathIsOutsideProject": 0,
  1384. "outputPathIsSetByUser": 0,
  1385. "outputStyle": 0,
  1386. "relativeURLS": 0,
  1387. "shouldRunAutoprefixer": 0,
  1388. "shouldRunBless": 0,
  1389. "strictImports": 0,
  1390. "strictMath": 0,
  1391. "strictUnits": 0
  1392. },
  1393. "\/ng\/less\/ui\/alert.less": {
  1394. "allowInsecureImports": 0,
  1395. "createSourceMap": 0,
  1396. "disableJavascript": 0,
  1397. "fileType": 1,
  1398. "ieCompatibility": 1,
  1399. "ignore": 1,
  1400. "ignoreWasSetByUser": 0,
  1401. "inputAbbreviatedPath": "\/ng\/less\/ui\/alert.less",
  1402. "outputAbbreviatedPath": "\/ng\/less\/css\/alert.css",
  1403. "outputPathIsOutsideProject": 0,
  1404. "outputPathIsSetByUser": 0,
  1405. "outputStyle": 0,
  1406. "relativeURLS": 0,
  1407. "shouldRunAutoprefixer": 0,
  1408. "shouldRunBless": 0,
  1409. "strictImports": 0,
  1410. "strictMath": 0,
  1411. "strictUnits": 0
  1412. },
  1413. "\/ng\/less\/ui\/bread.less": {
  1414. "allowInsecureImports": 0,
  1415. "createSourceMap": 0,
  1416. "disableJavascript": 0,
  1417. "fileType": 1,
  1418. "ieCompatibility": 1,
  1419. "ignore": 1,
  1420. "ignoreWasSetByUser": 0,
  1421. "inputAbbreviatedPath": "\/ng\/less\/ui\/bread.less",
  1422. "outputAbbreviatedPath": "\/ng\/less\/css\/bread.css",
  1423. "outputPathIsOutsideProject": 0,
  1424. "outputPathIsSetByUser": 0,
  1425. "outputStyle": 0,
  1426. "relativeURLS": 0,
  1427. "shouldRunAutoprefixer": 0,
  1428. "shouldRunBless": 0,
  1429. "strictImports": 0,
  1430. "strictMath": 0,
  1431. "strictUnits": 0
  1432. },
  1433. "\/ng\/less\/ui\/form.less": {
  1434. "allowInsecureImports": 0,
  1435. "createSourceMap": 0,
  1436. "disableJavascript": 0,
  1437. "fileType": 1,
  1438. "ieCompatibility": 1,
  1439. "ignore": 1,
  1440. "ignoreWasSetByUser": 0,
  1441. "inputAbbreviatedPath": "\/ng\/less\/ui\/form.less",
  1442. "outputAbbreviatedPath": "\/ng\/less\/css\/form.css",
  1443. "outputPathIsOutsideProject": 0,
  1444. "outputPathIsSetByUser": 0,
  1445. "outputStyle": 0,
  1446. "relativeURLS": 0,
  1447. "shouldRunAutoprefixer": 0,
  1448. "shouldRunBless": 0,
  1449. "strictImports": 0,
  1450. "strictMath": 0,
  1451. "strictUnits": 0
  1452. },
  1453. "\/ng\/less\/ui\/grid.less": {
  1454. "allowInsecureImports": 0,
  1455. "createSourceMap": 0,
  1456. "disableJavascript": 0,
  1457. "fileType": 1,
  1458. "ieCompatibility": 1,
  1459. "ignore": 1,
  1460. "ignoreWasSetByUser": 0,
  1461. "inputAbbreviatedPath": "\/ng\/less\/ui\/grid.less",
  1462. "outputAbbreviatedPath": "\/ng\/less\/css\/grid.css",
  1463. "outputPathIsOutsideProject": 0,
  1464. "outputPathIsSetByUser": 0,
  1465. "outputStyle": 0,
  1466. "relativeURLS": 0,
  1467. "shouldRunAutoprefixer": 0,
  1468. "shouldRunBless": 0,
  1469. "strictImports": 0,
  1470. "strictMath": 0,
  1471. "strictUnits": 0
  1472. },
  1473. "\/ng\/less\/ui\/label.less": {
  1474. "allowInsecureImports": 0,
  1475. "createSourceMap": 0,
  1476. "disableJavascript": 0,
  1477. "fileType": 1,
  1478. "ieCompatibility": 1,
  1479. "ignore": 1,
  1480. "ignoreWasSetByUser": 0,
  1481. "inputAbbreviatedPath": "\/ng\/less\/ui\/label.less",
  1482. "outputAbbreviatedPath": "\/ng\/less\/css\/label.css",
  1483. "outputPathIsOutsideProject": 0,
  1484. "outputPathIsSetByUser": 0,
  1485. "outputStyle": 0,
  1486. "relativeURLS": 0,
  1487. "shouldRunAutoprefixer": 0,
  1488. "shouldRunBless": 0,
  1489. "strictImports": 0,
  1490. "strictMath": 0,
  1491. "strictUnits": 0
  1492. },
  1493. "\/ng\/less\/ui\/menu.less": {
  1494. "allowInsecureImports": 0,
  1495. "createSourceMap": 0,
  1496. "disableJavascript": 0,
  1497. "fileType": 1,
  1498. "ieCompatibility": 1,
  1499. "ignore": 1,
  1500. "ignoreWasSetByUser": 0,
  1501. "inputAbbreviatedPath": "\/ng\/less\/ui\/menu.less",
  1502. "outputAbbreviatedPath": "\/ng\/less\/css\/menu.css",
  1503. "outputPathIsOutsideProject": 0,
  1504. "outputPathIsSetByUser": 0,
  1505. "outputStyle": 0,
  1506. "relativeURLS": 0,
  1507. "shouldRunAutoprefixer": 0,
  1508. "shouldRunBless": 0,
  1509. "strictImports": 0,
  1510. "strictMath": 0,
  1511. "strictUnits": 0
  1512. },
  1513. "\/ng\/less\/ui\/pager.less": {
  1514. "allowInsecureImports": 0,
  1515. "createSourceMap": 0,
  1516. "disableJavascript": 0,
  1517. "fileType": 1,
  1518. "ieCompatibility": 1,
  1519. "ignore": 1,
  1520. "ignoreWasSetByUser": 0,
  1521. "inputAbbreviatedPath": "\/ng\/less\/ui\/pager.less",
  1522. "outputAbbreviatedPath": "\/ng\/less\/css\/pager.css",
  1523. "outputPathIsOutsideProject": 0,
  1524. "outputPathIsSetByUser": 0,
  1525. "outputStyle": 0,
  1526. "relativeURLS": 0,
  1527. "shouldRunAutoprefixer": 0,
  1528. "shouldRunBless": 0,
  1529. "strictImports": 0,
  1530. "strictMath": 0,
  1531. "strictUnits": 0
  1532. },
  1533. "\/ng\/less\/ui\/panel.less": {
  1534. "allowInsecureImports": 0,
  1535. "createSourceMap": 0,
  1536. "disableJavascript": 0,
  1537. "fileType": 1,
  1538. "ieCompatibility": 1,
  1539. "ignore": 1,
  1540. "ignoreWasSetByUser": 0,
  1541. "inputAbbreviatedPath": "\/ng\/less\/ui\/panel.less",
  1542. "outputAbbreviatedPath": "\/ng\/less\/css\/panel.css",
  1543. "outputPathIsOutsideProject": 0,
  1544. "outputPathIsSetByUser": 0,
  1545. "outputStyle": 0,
  1546. "relativeURLS": 0,
  1547. "shouldRunAutoprefixer": 0,
  1548. "shouldRunBless": 0,
  1549. "strictImports": 0,
  1550. "strictMath": 0,
  1551. "strictUnits": 0
  1552. },
  1553. "\/ng\/less\/ui\/reset.less": {
  1554. "allowInsecureImports": 0,
  1555. "createSourceMap": 0,
  1556. "disableJavascript": 0,
  1557. "fileType": 1,
  1558. "ieCompatibility": 1,
  1559. "ignore": 1,
  1560. "ignoreWasSetByUser": 0,
  1561. "inputAbbreviatedPath": "\/ng\/less\/ui\/reset.less",
  1562. "outputAbbreviatedPath": "\/ng\/less\/css\/reset.css",
  1563. "outputPathIsOutsideProject": 0,
  1564. "outputPathIsSetByUser": 0,
  1565. "outputStyle": 0,
  1566. "relativeURLS": 0,
  1567. "shouldRunAutoprefixer": 0,
  1568. "shouldRunBless": 0,
  1569. "strictImports": 0,
  1570. "strictMath": 0,
  1571. "strictUnits": 0
  1572. },
  1573. "\/ng\/less\/ui\/table.less": {
  1574. "allowInsecureImports": 0,
  1575. "createSourceMap": 0,
  1576. "disableJavascript": 0,
  1577. "fileType": 1,
  1578. "ieCompatibility": 1,
  1579. "ignore": 1,
  1580. "ignoreWasSetByUser": 0,
  1581. "inputAbbreviatedPath": "\/ng\/less\/ui\/table.less",
  1582. "outputAbbreviatedPath": "\/ng\/less\/css\/table.css",
  1583. "outputPathIsOutsideProject": 0,
  1584. "outputPathIsSetByUser": 0,
  1585. "outputStyle": 0,
  1586. "relativeURLS": 0,
  1587. "shouldRunAutoprefixer": 0,
  1588. "shouldRunBless": 0,
  1589. "strictImports": 0,
  1590. "strictMath": 0,
  1591. "strictUnits": 0
  1592. },
  1593. "\/ng\/less\/ui\/var.less": {
  1594. "allowInsecureImports": 0,
  1595. "createSourceMap": 0,
  1596. "disableJavascript": 0,
  1597. "fileType": 1,
  1598. "ieCompatibility": 1,
  1599. "ignore": 1,
  1600. "ignoreWasSetByUser": 0,
  1601. "inputAbbreviatedPath": "\/ng\/less\/ui\/var.less",
  1602. "outputAbbreviatedPath": "\/ng\/less\/css\/var.css",
  1603. "outputPathIsOutsideProject": 0,
  1604. "outputPathIsSetByUser": 0,
  1605. "outputStyle": 0,
  1606. "relativeURLS": 0,
  1607. "shouldRunAutoprefixer": 0,
  1608. "shouldRunBless": 0,
  1609. "strictImports": 0,
  1610. "strictMath": 0,
  1611. "strictUnits": 0
  1612. }
  1613. },
  1614. "hooks": [
  1615. ],
  1616. "lastSavedByUser": "Jiahua Chen",
  1617. "manualImportLinks": {
  1618. },
  1619. "projectAttributes": {
  1620. "bowerAbbreviatedPath": "",
  1621. "displayValue": "Gogs",
  1622. "displayValueWasSetByUser": 1,
  1623. "iconImageName": "brackets_brown"
  1624. },
  1625. "projectSettings": {
  1626. "alwaysUseExternalServer": 0,
  1627. "animateCSSInjections": 1,
  1628. "autoApplyPSLanguageSettingsStyle": 0,
  1629. "autoprefixerBrowserString": "> 1%, last 2 versions, Firefox ESR, Opera 12.1",
  1630. "autoSyncProjectSettingsFile": 1,
  1631. "browserRefreshDelay": 0,
  1632. "coffeeAutoOutputPathEnabled": 1,
  1633. "coffeeAutoOutputPathFilenamePattern": "*.js",
  1634. "coffeeAutoOutputPathRelativePath": "",
  1635. "coffeeAutoOutputPathReplace1": "",
  1636. "coffeeAutoOutputPathReplace2": "",
  1637. "coffeeAutoOutputPathStyle": 0,
  1638. "coffeeCreateSourceMap": 0,
  1639. "coffeeLintFlags2": {
  1640. "arrow_spacing": {
  1641. "active": 0,
  1642. "flagValue": -1
  1643. },
  1644. "camel_case_classes": {
  1645. "active": 1,
  1646. "flagValue": -1
  1647. },
  1648. "colon_assignment_spacing": {
  1649. "active": 0,
  1650. "flagValue": 1
  1651. },
  1652. "cyclomatic_complexity": {
  1653. "active": 0,
  1654. "flagValue": 10
  1655. },
  1656. "duplicate_key": {
  1657. "active": 1,
  1658. "flagValue": -1
  1659. },
  1660. "empty_constructor_needs_parens": {
  1661. "active": 0,
  1662. "flagValue": -1
  1663. },
  1664. "ensure_comprehensions": {
  1665. "active": 1,
  1666. "flagValue": -1
  1667. },
  1668. "indentation": {
  1669. "active": 1,
  1670. "flagValue": 2
  1671. },
  1672. "line_endings": {
  1673. "active": 0,
  1674. "flagValue": 0
  1675. },
  1676. "max_line_length": {
  1677. "active": 0,
  1678. "flagValue": 150
  1679. },
  1680. "missing_fat_arrows": {
  1681. "active": 0,
  1682. "flagValue": -1
  1683. },
  1684. "newlines_after_classes": {
  1685. "active": 0,
  1686. "flagValue": 3
  1687. },
  1688. "no_backticks": {
  1689. "active": 1,
  1690. "flagValue": -1
  1691. },
  1692. "no_debugger": {
  1693. "active": 1,
  1694. "flagValue": -1
  1695. },
  1696. "no_empty_functions": {
  1697. "active": 0,
  1698. "flagValue": -1
  1699. },
  1700. "no_empty_param_list": {
  1701. "active": 0,
  1702. "flagValue": -1
  1703. },
  1704. "no_implicit_braces": {
  1705. "active": 1,
  1706. "flagValue": -1
  1707. },
  1708. "no_implicit_parens": {
  1709. "active": 0,
  1710. "flagValue": -1
  1711. },
  1712. "no_interpolation_in_single_quotes": {
  1713. "active": 0,
  1714. "flagValue": -1
  1715. },
  1716. "no_plusplus": {
  1717. "active": 0,
  1718. "flagValue": -1
  1719. },
  1720. "no_stand_alone_at": {
  1721. "active": 1,
  1722. "flagValue": -1
  1723. },
  1724. "no_tabs": {
  1725. "active": 1,
  1726. "flagValue": -1
  1727. },
  1728. "no_throwing_strings": {
  1729. "active": 1,
  1730. "flagValue": -1
  1731. },
  1732. "no_trailing_semicolons": {
  1733. "active": 1,
  1734. "flagValue": -1
  1735. },
  1736. "no_trailing_whitespace": {
  1737. "active": 1,
  1738. "flagValue": -1
  1739. },
  1740. "no_unnecessary_double_quotes": {
  1741. "active": 0,
  1742. "flagValue": -1
  1743. },
  1744. "no_unnecessary_fat_arrows": {
  1745. "active": 1,
  1746. "flagValue": -1
  1747. },
  1748. "non_empty_constructor_needs_parens": {
  1749. "active": 0,
  1750. "flagValue": -1
  1751. },
  1752. "prefer_english_operator": {
  1753. "active": 0,
  1754. "flagValue": -1
  1755. },
  1756. "space_operators": {
  1757. "active": 0,
  1758. "flagValue": -1
  1759. },
  1760. "spacing_after_comma": {
  1761. "active": 1,
  1762. "flagValue": -1
  1763. }
  1764. },
  1765. "coffeeMinifyOutput": 1,
  1766. "coffeeOutputStyle": 0,
  1767. "coffeeSyntaxCheckerStyle": 1,
  1768. "externalServerAddress": "http:\/\/localhost:8888",
  1769. "externalServerPreviewPathAddition": "",
  1770. "genericWebpageFileExtensionsString": "html, htm, shtml, shtm, xhtml, php, jsp, asp, aspx, erb, ctp",
  1771. "hamlAutoOutputPathEnabled": 1,
  1772. "hamlAutoOutputPathFilenamePattern": "*.html",
  1773. "hamlAutoOutputPathRelativePath": "",
  1774. "hamlAutoOutputPathReplace1": "",
  1775. "hamlAutoOutputPathReplace2": "",
  1776. "hamlAutoOutputPathStyle": 0,
  1777. "hamlEscapeHTMLCharacters": 0,
  1778. "hamlNoEscapeInAttributes": 0,
  1779. "hamlOutputFormat": 2,
  1780. "hamlOutputStyle": 0,
  1781. "hamlUseCDATA": 0,
  1782. "hamlUseDoubleQuotes": 0,
  1783. "hamlUseUnixNewlines": 0,
  1784. "jadeAutoOutputPathEnabled": 1,
  1785. "jadeAutoOutputPathFilenamePattern": "*.html",
  1786. "jadeAutoOutputPathRelativePath": "",
  1787. "jadeAutoOutputPathReplace1": "",
  1788. "jadeAutoOutputPathReplace2": "",
  1789. "jadeAutoOutputPathStyle": 0,
  1790. "jadeCompileDebug": 1,
  1791. "jadeOutputStyle": 0,
  1792. "javascriptAutoOutputPathEnabled": 1,
  1793. "javascriptAutoOutputPathFilenamePattern": "*-min.js",
  1794. "javascriptAutoOutputPathRelativePath": "\/min",
  1795. "javascriptAutoOutputPathReplace1": "",
  1796. "javascriptAutoOutputPathReplace2": "",
  1797. "javascriptAutoOutputPathStyle": 2,
  1798. "javascriptCreateSourceMap": 1,
  1799. "javascriptOutputStyle": 1,
  1800. "javascriptSyntaxCheckerStyle": 1,
  1801. "jsCheckerReservedNamesString": "",
  1802. "jsHintFlags2": {
  1803. "asi": {
  1804. "active": 0,
  1805. "flagValue": -1
  1806. },
  1807. "bitwise": {
  1808. "active": 1,
  1809. "flagValue": -1
  1810. },
  1811. "boss": {
  1812. "active": 0,
  1813. "flagValue": -1
  1814. },
  1815. "browser": {
  1816. "active": 1,
  1817. "flagValue": -1
  1818. },
  1819. "browserify": {
  1820. "active": 0,
  1821. "flagValue": -1
  1822. },
  1823. "camelcase": {
  1824. "active": 0,
  1825. "flagValue": -1
  1826. },
  1827. "couch": {
  1828. "active": 0,
  1829. "flagValue": -1
  1830. },
  1831. "curly": {
  1832. "active": 1,
  1833. "flagValue": -1
  1834. },
  1835. "debug": {
  1836. "active": 0,
  1837. "flagValue": -1
  1838. },
  1839. "devel": {
  1840. "active": 0,
  1841. "flagValue": -1
  1842. },
  1843. "dojo": {
  1844. "active": 0,
  1845. "flagValue": -1
  1846. },
  1847. "elision": {
  1848. "active": 1,
  1849. "flagValue": -1
  1850. },
  1851. "eqeqeq": {
  1852. "active": 1,
  1853. "flagValue": -1
  1854. },
  1855. "eqnull": {
  1856. "active": 0,
  1857. "flagValue": -1
  1858. },
  1859. "es3": {
  1860. "active": 0,
  1861. "flagValue": -1
  1862. },
  1863. "esnext": {
  1864. "active": 0,
  1865. "flagValue": -1
  1866. },
  1867. "evil": {
  1868. "active": 0,
  1869. "flagValue": -1
  1870. },
  1871. "expr": {
  1872. "active": 0,
  1873. "flagValue": -1
  1874. },
  1875. "forin": {
  1876. "active": 0,
  1877. "flagValue": -1
  1878. },
  1879. "freeze": {
  1880. "active": 1,
  1881. "flagValue": -1
  1882. },
  1883. "funcscope": {
  1884. "active": 0,
  1885. "flagValue": -1
  1886. },
  1887. "globalstrict": {
  1888. "active": 0,
  1889. "flagValue": -1
  1890. },
  1891. "immed": {
  1892. "active": 0,
  1893. "flagValue": -1
  1894. },
  1895. "indent": {
  1896. "active": 0,
  1897. "flagValue": 4
  1898. },
  1899. "iterator": {
  1900. "active": 0,
  1901. "flagValue": -1
  1902. },
  1903. "jasmine": {
  1904. "active": 0,
  1905. "flagValue": -1
  1906. },
  1907. "jquery": {
  1908. "active": 1,
  1909. "flagValue": -1
  1910. },
  1911. "lastsemic": {
  1912. "active": 0,
  1913. "flagValue": -1
  1914. },
  1915. "latedef": {
  1916. "active": 1,
  1917. "flagValue": -1
  1918. },
  1919. "laxbreak": {
  1920. "active": 0,
  1921. "flagValue": -1
  1922. },
  1923. "laxcomma": {
  1924. "active": 0,
  1925. "flagValue": -1
  1926. },
  1927. "loopfunc": {
  1928. "active": 0,
  1929. "flagValue": -1
  1930. },
  1931. "maxcomplexity": {
  1932. "active": 0,
  1933. "flagValue": 10
  1934. },
  1935. "maxdepth": {
  1936. "active": 0,
  1937. "flagValue": 3
  1938. },
  1939. "maxlen": {
  1940. "active": 0,
  1941. "flagValue": 150
  1942. },
  1943. "maxparams": {
  1944. "active": 0,
  1945. "flagValue": 3
  1946. },
  1947. "maxstatements": {
  1948. "active": 0,
  1949. "flagValue": 4
  1950. },
  1951. "mocha": {
  1952. "active": 0,
  1953. "flagValue": -1
  1954. },
  1955. "mootools": {
  1956. "active": 0,
  1957. "flagValue": -1
  1958. },
  1959. "moz": {
  1960. "active": 0,
  1961. "flagValue": -1
  1962. },
  1963. "multistr": {
  1964. "active": 0,
  1965. "flagValue": -1
  1966. },
  1967. "newcap": {
  1968. "active": 1,
  1969. "flagValue": -1
  1970. },
  1971. "noarg": {
  1972. "active": 1,
  1973. "flagValue": -1
  1974. },
  1975. "node": {
  1976. "active": 0,
  1977. "flagValue": -1
  1978. },
  1979. "noempty": {
  1980. "active": 0,
  1981. "flagValue": -1
  1982. },
  1983. "nonbsp": {
  1984. "active": 0,
  1985. "flagValue": -1
  1986. },
  1987. "nonew": {
  1988. "active": 1,
  1989. "flagValue": -1
  1990. },
  1991. "nonstandard": {
  1992. "active": 0,
  1993. "flagValue": -1
  1994. },
  1995. "notypeof": {
  1996. "active": 1,
  1997. "flagValue": -1
  1998. },
  1999. "noyield": {
  2000. "active": 0,
  2001. "flagValue": -1
  2002. },
  2003. "onecase": {
  2004. "active": 0,
  2005. "flagValue": -1
  2006. },
  2007. "phantom": {
  2008. "active": 0,
  2009. "flagValue": -1
  2010. },
  2011. "plusplus": {
  2012. "active": 0,
  2013. "flagValue": -1
  2014. },
  2015. "proto": {
  2016. "active": 0,
  2017. "flagValue": -1
  2018. },
  2019. "prototypejs": {
  2020. "active": 0,
  2021. "flagValue": -1
  2022. },
  2023. "qunit": {
  2024. "active": 0,
  2025. "flagValue": -1
  2026. },
  2027. "regexp": {
  2028. "active": 1,
  2029. "flagValue": -1
  2030. },
  2031. "rhino": {
  2032. "active": 0,
  2033. "flagValue": -1
  2034. },
  2035. "scripturl": {
  2036. "active": 0,
  2037. "flagValue": -1
  2038. },
  2039. "shadow": {
  2040. "active": 0,
  2041. "flagValue": -1
  2042. },
  2043. "shelljs": {
  2044. "active": 0,
  2045. "flagValue": -1
  2046. },
  2047. "singleGroups": {
  2048. "active": 0,
  2049. "flagValue": -1
  2050. },
  2051. "strict": {
  2052. "active": 0,
  2053. "flagValue": -1
  2054. },
  2055. "sub": {
  2056. "active": 0,
  2057. "flagValue": -1
  2058. },
  2059. "supernew": {
  2060. "active": 0,
  2061. "flagValue": -1
  2062. },
  2063. "typed": {
  2064. "active": 0,
  2065. "flagValue": -1
  2066. },
  2067. "undef": {
  2068. "active": 1,
  2069. "flagValue": -1
  2070. },
  2071. "unused": {
  2072. "active": 1,
  2073. "flagValue": -1
  2074. },
  2075. "withstmt": {
  2076. "active": 0,
  2077. "flagValue": -1
  2078. },
  2079. "worker": {
  2080. "active": 0,
  2081. "flagValue": -1
  2082. },
  2083. "wsh": {
  2084. "active": 0,
  2085. "flagValue": -1
  2086. },
  2087. "yui": {
  2088. "active": 0,
  2089. "flagValue": -1
  2090. }
  2091. },
  2092. "jsLintFlags2": {
  2093. "ass": {
  2094. "active": 0,
  2095. "flagValue": -1
  2096. },
  2097. "bitwise": {
  2098. "active": 0,
  2099. "flagValue": -1
  2100. },
  2101. "browser": {
  2102. "active": 1,
  2103. "flagValue": -1
  2104. },
  2105. "closure": {
  2106. "active": 0,
  2107. "flagValue": -1
  2108. },
  2109. "continue": {
  2110. "active": 0,
  2111. "flagValue": -1
  2112. },
  2113. "debug": {
  2114. "active": 0,
  2115. "flagValue": -1
  2116. },
  2117. "devel": {
  2118. "active": 0,
  2119. "flagValue": -1
  2120. },
  2121. "eqeq": {
  2122. "active": 0,
  2123. "flagValue": -1
  2124. },
  2125. "evil": {
  2126. "active": 0,
  2127. "flagValue": -1
  2128. },
  2129. "forin": {
  2130. "active": 0,
  2131. "flagValue": -1
  2132. },
  2133. "indent": {
  2134. "active": 0,
  2135. "flagValue": 4
  2136. },
  2137. "maxlen": {
  2138. "active": 0,
  2139. "flagValue": 150
  2140. },
  2141. "newcap": {
  2142. "active": 0,
  2143. "flagValue": -1
  2144. },
  2145. "node": {
  2146. "active": 0,
  2147. "flagValue": -1
  2148. },
  2149. "nomen": {
  2150. "active": 0,
  2151. "flagValue": -1
  2152. },
  2153. "plusplus": {
  2154. "active": 0,
  2155. "flagValue": -1
  2156. },
  2157. "properties": {
  2158. "active": 0,
  2159. "flagValue": -1
  2160. },
  2161. "regexp": {
  2162. "active": 0,
  2163. "flagValue": -1
  2164. },
  2165. "rhino": {
  2166. "active": 0,
  2167. "flagValue": -1
  2168. },
  2169. "sloppy": {
  2170. "active": 0,
  2171. "flagValue": -1
  2172. },
  2173. "stupid": {
  2174. "active": 0,
  2175. "flagValue": -1
  2176. },
  2177. "sub": {
  2178. "active": 0,
  2179. "flagValue": -1
  2180. },
  2181. "todo": {
  2182. "active": 0,
  2183. "flagValue": -1
  2184. },
  2185. "unparam": {
  2186. "active": 0,
  2187. "flagValue": -1
  2188. },
  2189. "vars": {
  2190. "active": 0,
  2191. "flagValue": -1
  2192. },
  2193. "white": {
  2194. "active": 0,
  2195. "flagValue": -1
  2196. }
  2197. },
  2198. "kitAutoOutputPathEnabled": 1,
  2199. "kitAutoOutputPathFilenamePattern": "*.html",
  2200. "kitAutoOutputPathRelativePath": "",
  2201. "kitAutoOutputPathReplace1": "",
  2202. "kitAutoOutputPathReplace2": "",
  2203. "kitAutoOutputPathStyle": 0,
  2204. "lessAllowInsecureImports": 0,
  2205. "lessAutoOutputPathEnabled": 1,
  2206. "lessAutoOutputPathFilenamePattern": "*.css",
  2207. "lessAutoOutputPathRelativePath": "..\/css",
  2208. "lessAutoOutputPathReplace1": "less",
  2209. "lessAutoOutputPathReplace2": "css",
  2210. "lessAutoOutputPathStyle": 2,
  2211. "lessCreateSourceMap": 0,
  2212. "lessDisableJavascript": 0,
  2213. "lessIeCompatibility": 1,
  2214. "lessOutputStyle": 0,
  2215. "lessRelativeURLS": 0,
  2216. "lessStrictImports": 0,
  2217. "lessStrictMath": 0,
  2218. "lessStrictUnits": 0,
  2219. "markdownAutoOutputPathEnabled": 1,
  2220. "markdownAutoOutputPathFilenamePattern": "*.html",
  2221. "markdownAutoOutputPathRelativePath": "",
  2222. "markdownAutoOutputPathReplace1": "",
  2223. "markdownAutoOutputPathReplace2": "",
  2224. "markdownAutoOutputPathStyle": 0,
  2225. "markdownEnableFootnotes": 0,
  2226. "markdownEnableSmartyPants": 1,
  2227. "markdownExpandTabs": 1,
  2228. "reloadFileURLs": 0,
  2229. "sassAutoOutputPathEnabled": 1,
  2230. "sassAutoOutputPathFilenamePattern": "*.css",
  2231. "sassAutoOutputPathRelativePath": "..\/css",
  2232. "sassAutoOutputPathReplace1": "sass",
  2233. "sassAutoOutputPathReplace2": "css",
  2234. "sassAutoOutputPathStyle": 2,
  2235. "sassCreateSourceMap": 0,
  2236. "sassDebugStyle": 0,
  2237. "sassDecimalPrecision": 10,
  2238. "sassOutputStyle": 0,
  2239. "sassUseLibsass": 0,
  2240. "shouldRunAutoprefixer": 0,
  2241. "shouldRunBless": 0,
  2242. "skippedItemsString": ".svn, .git, .hg, log, _logs, _cache, cache, logs, node_modules",
  2243. "slimAutoOutputPathEnabled": 1,
  2244. "slimAutoOutputPathFilenamePattern": "*.html",
  2245. "slimAutoOutputPathRelativePath": "",
  2246. "slimAutoOutputPathReplace1": "",
  2247. "slimAutoOutputPathReplace2": "",
  2248. "slimAutoOutputPathStyle": 0,
  2249. "slimCompileOnly": 0,
  2250. "slimLogicless": 0,
  2251. "slimOutputFormat": 0,
  2252. "slimOutputStyle": 1,
  2253. "slimRailsCompatible": 0,
  2254. "stylusAutoOutputPathEnabled": 1,
  2255. "stylusAutoOutputPathFilenamePattern": "*.css",
  2256. "stylusAutoOutputPathRelativePath": "..\/css",
  2257. "stylusAutoOutputPathReplace1": "stylus",
  2258. "stylusAutoOutputPathReplace2": "css",
  2259. "stylusAutoOutputPathStyle": 2,
  2260. "stylusCreateSourceMap": 0,
  2261. "stylusDebugStyle": 0,
  2262. "stylusImportCSS": 0,
  2263. "stylusOutputStyle": 0,
  2264. "stylusResolveRelativeURLS": 0,
  2265. "typescriptAutoOutputPathEnabled": 1,
  2266. "typescriptAutoOutputPathFilenamePattern": "*.js",
  2267. "typescriptAutoOutputPathRelativePath": "\/js",
  2268. "typescriptAutoOutputPathReplace1": "",
  2269. "typescriptAutoOutputPathReplace2": "",
  2270. "typescriptAutoOutputPathStyle": 2,
  2271. "typescriptCreateDeclarationFile": 0,
  2272. "typescriptCreateSourceMap": 0,
  2273. "typescriptMinifyOutput": 0,
  2274. "typescriptModuleType": 0,
  2275. "typescriptNoImplicitAny": 0,
  2276. "typescriptPreserveConstEnums": 0,
  2277. "typescriptRemoveComments": 0,
  2278. "typescriptSuppressImplicitAnyIndexErrors": 0,
  2279. "typescriptTargetECMAVersion": 0,
  2280. "uglifyDefinesString": "",
  2281. "uglifyFlags2": {
  2282. "ascii-only": {
  2283. "active": 0,
  2284. "flagValue": -1
  2285. },
  2286. "booleans": {
  2287. "active": 1,
  2288. "flagValue": -1
  2289. },
  2290. "bracketize": {
  2291. "active": 0,
  2292. "flagValue": -1
  2293. },
  2294. "cascade": {
  2295. "active": 1,
  2296. "flagValue": -1
  2297. },
  2298. "comments": {
  2299. "active": 1,
  2300. "flagValue": -1
  2301. },
  2302. "comparisons": {
  2303. "active": 1,
  2304. "flagValue": -1
  2305. },
  2306. "compress": {
  2307. "active": 1,
  2308. "flagValue": -1
  2309. },
  2310. "conditionals": {
  2311. "active": 1,
  2312. "flagValue": -1
  2313. },
  2314. "dead_code": {
  2315. "active": 0,
  2316. "flagValue": -1
  2317. },
  2318. "drop_console": {
  2319. "active": 0,
  2320. "flagValue": -1
  2321. },
  2322. "drop_debugger": {
  2323. "active": 1,
  2324. "flagValue": -1
  2325. },
  2326. "eval": {
  2327. "active": 0,
  2328. "flagValue": -1
  2329. },
  2330. "evaluate": {
  2331. "active": 1,
  2332. "flagValue": -1
  2333. },
  2334. "hoist_funs": {
  2335. "active": 1,
  2336. "flagValue": -1
  2337. },
  2338. "hoist_vars": {
  2339. "active": 0,
  2340. "flagValue": -1
  2341. },
  2342. "if_return": {
  2343. "active": 1,
  2344. "flagValue": -1
  2345. },
  2346. "indent-level": {
  2347. "active": 0,
  2348. "flagValue": 4
  2349. },
  2350. "indent-start": {
  2351. "active": 0,
  2352. "flagValue": 0
  2353. },
  2354. "inline-script": {
  2355. "active": 0,
  2356. "flagValue": -1
  2357. },
  2358. "join_vars": {
  2359. "active": 1,
  2360. "flagValue": -1
  2361. },
  2362. "keep_fargs": {
  2363. "active": 0,
  2364. "flagValue": -1
  2365. },
  2366. "loops": {
  2367. "active": 1,
  2368. "flagValue": -1
  2369. },
  2370. "mangle": {
  2371. "active": 1,
  2372. "flagValue": -1
  2373. },
  2374. "max-line-len": {
  2375. "active": 1,
  2376. "flagValue": 32000
  2377. },
  2378. "negate_iife": {
  2379. "active": 1,
  2380. "flagValue": -1
  2381. },
  2382. "properties": {
  2383. "active": 1,
  2384. "flagValue": -1
  2385. },
  2386. "pure_getters": {
  2387. "active": 0,
  2388. "flagValue": -1
  2389. },
  2390. "quote-keys": {
  2391. "active": 0,
  2392. "flagValue": -1
  2393. },
  2394. "screw-ie8": {
  2395. "active": 0,
  2396. "flagValue": -1
  2397. },
  2398. "semicolons": {
  2399. "active": 1,
  2400. "flagValue": -1
  2401. },
  2402. "sequences": {
  2403. "active": 1,
  2404. "flagValue": -1
  2405. },
  2406. "sort": {
  2407. "active": 0,
  2408. "flagValue": -1
  2409. },
  2410. "space-colon": {
  2411. "active": 1,
  2412. "flagValue": -1
  2413. },
  2414. "toplevel": {
  2415. "active": 0,
  2416. "flagValue": -1
  2417. },
  2418. "unsafe": {
  2419. "active": 0,
  2420. "flagValue": -1
  2421. },
  2422. "unused": {
  2423. "active": 0,
  2424. "flagValue": -1
  2425. },
  2426. "warnings": {
  2427. "active": 0,
  2428. "flagValue": -1
  2429. },
  2430. "width": {
  2431. "active": 1,
  2432. "flagValue": 80
  2433. }
  2434. },
  2435. "uglifyReservedNamesString": "$",
  2436. "websiteRelativeRoot": ""
  2437. },
  2438. "settingsFileVersion": "2"
  2439. }