This file contains 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
{ | |
"disallowEmptyBlocks": true, | |
"disallowIdentifierNames": [ | |
"that" | |
], | |
"disallowImplicitTypeConversion": [ | |
"numeric", | |
"boolean" | |
], | |
"disallowKeywordsOnNewLine": [ |
This file contains 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
# Project | |
* text eol=crlf | |
# Language Diffs | |
*.cs diff=csharp | |
*.css diff=css |
This file contains 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
# Project | |
* text eol=crlf | |
# .NET Framework | |
*.dll binary diff=exif | |
*.exe binary diff=exif |
This file contains 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
// ---- | |
// Sass (v3.4.14) | |
// Compass (v1.0.3) | |
// ---- | |
@function prepend-slash($value) { | |
@return unquote('"\\#{$value}"'); | |
} | |
// calling `prepend-slash` is only necessary when using a variable |
This file contains 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
# Project | |
* text eol=lf | |
# Language Diffs | |
*.cs diff=csharp | |
*.css diff=css |
This file contains 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
#---------------------------------------# | |
# Project Ignores # | |
#---------------------------------------# | |
# output | |
/.temp | |
/.tmp | |
/build | |
/dist |
This file contains 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
/** | |
* @param {Number} value | |
* @param {Number} [bitCount = 0] | |
* | |
* @returns {String} binary representation of the two's complement of `value`. | |
*/ | |
function twosComplement(value, bitCount) { | |
let binaryStr; | |
if (value >= 0) { |