This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"printWidth": 80, | |
"tabWidth": 2, | |
"useTabs": false, | |
"semi": true, | |
"singleQuote": false, | |
"quoteProps": "as-needed", | |
"jsxSingleQuote": false, | |
"trailingComma": "es5", | |
"bracketSpacing": true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-renamesourcefileattribute SourceFile | |
-dontusemixedcaseclassnames | |
-keepattributes Exceptions,InnerClasses,Signature,Deprecated, | |
SourceFile,LineNumberTable,*Annotation*,EnclosingMethod | |
# Keep - Library. Keep all public and protected classes, fields, and methods. | |
-keep public class * { | |
public protected <fields>; | |
public protected <methods>; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file is to serve as a template proguard configuration for projects using Ad Networks. | |
# | |
# Include the relevant ad networks on your complete proguard configuration. | |
# | |
# Credits: This template was created based on https://admost.github.io/amrandroid/ | |
# ADMOST | |
-keepattributes Exceptions, InnerClasses | |
-dontwarn admost.sdk.** | |
-keep class admost.sdk.** {*;} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Replaces the file at ~/.atom/styles.less | |
// | |
// Generic Variables | |
// | |
@background: #1F1F1F; | |
@foreground: #252526; | |
@ui-text-color: #CCC; | |
@dark-gray: #373434; // Current Line & Selection | |
@gray: #939999; |