config.codekit 44 KB

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