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
{ | |
"folders": | |
[ | |
{ | |
"file_exclude_patterns": | |
[ | |
// "*.sln" | |
], | |
"folder_exclude_patterns": | |
[ |
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
// CONST's | |
int DS_pin = 8; | |
int STCP_pin = 9; | |
int SHCP_pin = 10; | |
int C1_pin = 1; | |
int C2_pin = 2; | |
int C3_pin = 3; | |
int C4_pin = 4; |
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
myModule.validate = function(params){ | |
return new WinJS.Promise(function(ccb, ecb){ | |
myModule.preValidate(params).then( | |
function prevalidateSuccess(result){ | |
ccb(result); | |
}, | |
function prevalidateError(err){ | |
ecb(err); | |
}) | |
}); |
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
{ | |
"always_show_minimap_viewport": true, | |
"bold_folder_labels": true, | |
"color_scheme": "Packages/Oceanic Next Color Scheme/Oceanic Next.tmTheme", | |
"theme": "Oceanic Next.sublime-theme", | |
"draw_white_space": "all", | |
"font_options": | |
[ | |
"gray_antialias", | |
"subpixel_antialias" |
Note that becase these links are copied from browser history, they're essentially in bottom to top order
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_status": "none" | |
} |
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
// Install NPM Modules: | |
// yarn add eslint babel-eslint eslint-plugin-react eslint-plugin-import eslint-plugin-redux eslint-plugin-immutable --dev | |
module.exports = { | |
"parser": "babel-eslint", | |
// Globals: // http://eslint.org/docs/user-guide/configuring#specifying-globals | |
"globals": { | |
// "foo": 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
{ | |
"folders": | |
[ | |
{ | |
"path": ".", | |
"folder_exclude_patterns": ["node_modules", "src", "test"] | |
}, | |
{ | |
"path": "src/", | |
"folder_exclude_patterns": [".tmp"] |