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
| /* | |
| * Your Stylesheet | |
| * | |
| * This stylesheet is loaded when Atom starts up and is reloaded automatically | |
| * when it is changed and saved. | |
| * | |
| * Add your own CSS or Less to fully customize Atom. | |
| * If you are unfamiliar with Less, you can read more about it here: | |
| * http://lesscss.org | |
| */ |
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
| /////////////////////////////////////////////////////////////// | |
| // Node.js // | |
| /////////////////////////////////////////////////////////////// | |
| declare var module: any; | |
| declare function require(mod: string): any; | |
| /////////////////////////////////////////////////////////////// | |
| // react-router // | |
| /////////////////////////////////////////////////////////////// |
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
| { | |
| "typescript": { | |
| "indent_size": 2, | |
| "indent_char": " ", | |
| "indent_level": 0, | |
| "indent_with_tabs": false, | |
| "preserve_newlines": true, | |
| "max_preserve_newlines": 2, | |
| "jslint_happy": 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
Show hidden characters
| { | |
| "compileOnSave": true, | |
| "compilerOptions": { | |
| "target": "es6", | |
| "module": "es6", | |
| "declaration": false, | |
| "noImplicitAny": true, | |
| "removeComments": false, | |
| "noLib": false, | |
| "preserveConstEnums": 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
| { | |
| "env": { | |
| "es6": true, | |
| "browser": true, | |
| "node": true | |
| }, | |
| "parser": "babel-eslint", | |
| "rules": { |
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
| { | |
| "rules": { | |
| "class-name": true, | |
| "comment-format": [true, "check-space"], | |
| "curly": true, | |
| "eofline": true, | |
| "forin": false, | |
| "indent": [true, "spaces"], | |
| "label-position": true, | |
| "label-undefined": 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
| // Type definitions for Meteor 1.3 | |
| // Project: http://www.meteor.com/ | |
| // Definitions by: Dave Allen <https://github.com/fullflavedave> | |
| // Definitions: https://github.com/borisyankov/DefinitelyTyped | |
| /** | |
| * These are the common (for client and server) modules and interfaces that can't be automatically generated from the Meteor data.js file | |
| */ | |
| interface EJSONable { |
NewerOlder