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
// Place your settings in this file to overwrite the default settings | |
{ | |
"editor.tabSize": 4, | |
"editor.roundedSelection": false, | |
"editor.renderWhitespace": true, | |
"files.trimTrailingWhitespace": true, | |
"files.insertFinalNewline": true, | |
"javascript.suggest.useCodeSnippetsOnMethodSuggest": 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
WARNING in (webpack)/~/enhanced-resolve/~/graceful-fs/fs.js | |
Critical dependencies: | |
11:12-19 require function is used in a way in which dependencies cannot be statically extracted | |
@ (webpack)/~/enhanced-resolve/~/graceful-fs/fs.js 11:12-19 | |
WARNING in (webpack)/~/enhanced-resolve/~/graceful-fs/LICENSE | |
Module parse failed: C:\dev\projects\titler\node_modules\webpack\node_modules\enhanced-resolve\node_modules\graceful-fs\LICENSE Line 1: Unexpected identifier | |
You may need an appropriate loader to handle this file type. | |
| The ISC License | |
| |
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
import RCEHDispatcher from "dispatcher/RCEHDispatcher"; | |
import { ActionTypes, PayloadSources } from "constants/AppConstants"; | |
import assign from "react/lib/Object.assign"; | |
import { EventEmitter } from "events"; | |
import { List } from "immutable"; | |
const CHANGE_EVENT = "CHANGE_EVENT"; | |
let results = List(); |
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
import { Dispatcher } from "flux"; | |
import assign from "react/lib/Object.assign"; | |
import { PayloadSources } from "constants/AppConstants"; | |
export default assign(new Dispatcher(), { | |
handleServerAction(type, result, error = null) { | |
let payload = { | |
source: PayloadSources.SERVER_ACTION, | |
action: { |
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
var webpack = require("webpack"); | |
var yargs = require("yargs"); | |
var path = require("path"); | |
var nib = require("nib"); | |
var argv = yargs | |
.boolean("p").alias("p", "optimize-minimize") | |
.boolean("h").alias("h", "hot") | |
.argv; |
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
/*eslint key-spacing: [2, { "align": "value" }]*/ | |
( | |
{ | |
user: 2 | |
} | |
) |
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
{ | |
"parser": "babel-eslint", | |
"env": { | |
"browser": true, | |
"node": true | |
}, | |
"plugins": [ | |
"react" | |
], | |
"ecmaFeatures": { |
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
/* webpack loader: | |
{ | |
test: /fetch.js$/, | |
loaders: ["exports?fetch=window.fetch,Headers=window.Headers,Request=window.Request,Response=window.Response"] | |
} | |
*/ | |
import { fetch, Headers } from "whatwg-fetch"; | |
let headers = new Headers(); |
NewerOlder