Skip to content

Commit

Permalink
Merge pull request #131 from cloudflare/splash-page
Browse files Browse the repository at this point in the history
Splash page
  • Loading branch information
manatarms committed Jun 28, 2017
2 parents 6ffa3ac + 63f740d commit b4b4c72
Show file tree
Hide file tree
Showing 42 changed files with 1,568 additions and 132 deletions.
9 changes: 0 additions & 9 deletions .eslintrc

This file was deleted.

73 changes: 73 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
{
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"globalReturn": false,
"impliedStrict": true,
"jsx": true,
"experimentalObjectRestSpread": true
}
},
"globals": {
"__webpack_public_path__": true,
"bootstrap": true,
"describe": true,
"it": true,
"beforeEach": true,
"afterEach": true,
"before": true,
"after": true,
"test": true,
"expect": true
},
"env": {
"browser": true,
"node": true,
"es6": true
},
"plugins": [
"prettier",
"react",
"import",
"json",
"cflint",
"compat",
"mocha"
],
"extends": [
"plugin:react/recommended",
"plugin:import/errors",
"plugin:import/warnings"
],
"rules": {
"mocha/no-exclusive-tests": 2,
"block-scoped-var": 2,
"default-case": 2,
"guard-for-in": 2,
"no-else-return": 2,
"no-floating-decimal": 2,
"no-self-compare": 2,
"no-void": 2,
"radix": 2,
"wrap-iife": ["error", "inside"],
"no-catch-shadow": 2,
"handle-callback-err": 2,
"camelcase": 0,
"no-unused-vars": [2, {"vars": "all", "args": "after-used"}],
"no-undef": [2, {"typeof": false}],
"react/prop-types": [2, {"skipUndeclared": true}],
"import/no-absolute-path": 2,
"import/no-deprecated": 1,
"import/no-mutable-exports": 1,
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"import/first": 1,
"prettier/prettier": [2, {"trailingComma": "none", "singleQuote": true}],
"compat/compat": 2
},
"settings": {
"import/resolver": "webpack"
}
}
1 change: 1 addition & 0 deletions assets/global-caching.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/insight.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/security.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions assets/web-optimization.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit b4b4c72

Please sign in to comment.