Skip to content

Commit

Permalink
added in peruse base browser code
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuef committed Apr 17, 2017
1 parent c6242ce commit 21fda94
Show file tree
Hide file tree
Showing 65 changed files with 2,822 additions and 2,146 deletions.
6 changes: 3 additions & 3 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
root = true

[*]
indent_style = tab
indent_style = space
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.{json,js,jsx,html,css}]
indent_style = space
indent_size = 2
indent_size = 4

[.eslintrc]
indent_style = space
indent_size = 2
indent_size = 4

[*.md]
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
flow-typed/
app/dist/
app/main.js
app/node_modules/
node_modules
dll
29 changes: 24 additions & 5 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,28 @@
},
"rules": {
"arrow-parens": ["off"],
"brace-style": ["error", "allman"],
"compat/compat": "error",
"consistent-return": "off",
"comma-dangle": "off",
"flowtype-errors/show-errors": "error",
"generator-star-spacing": "off",
"import/no-unresolved": "error",
"key-spacing": [ "error", {
"singleLine": {
"beforeColon": false,
"afterColon": true
},
"multiLine": {
"beforeColon": true,
"afterColon": true,
"align": "colon"
}
}],
"import/no-unresolved": "off",
"import/no-extraneous-dependencies": "off",
"indent": ["error", 4,
{ "SwitchCase": 1 }
],
"no-console": "off",
"no-use-before-define": "off",
"no-multi-assign": "off",
Expand All @@ -25,8 +40,12 @@
"order": ["type-annotations", "static-methods", "lifecycle", "everything-else", "render"]
}],
"react/jsx-no-bind": "off",
"react/jsx-curly-spacing": ["error", "always"],
"react/jsx-indent-props": ["error", 4],
"react/jsx-indent": ["error", 4],
"react/jsx-filename-extension": ["error", { "extensions": [".js", ".jsx"] }],
"react/prefer-stateless-function": "off"
"react/prefer-stateless-function": "off",
"space-in-parens": ["error", "always"]
},
"plugins": [
"flowtype",
Expand All @@ -38,9 +57,9 @@
],
"settings": {
"import/resolver": {
"webpack": {
"config": "webpack.config.eslint.js"
}
# "webpack": {
# "config": "webpack.config.eslint.js"
# }
}
}
}
297 changes: 0 additions & 297 deletions CHANGELOG.md

This file was deleted.

Loading

0 comments on commit 21fda94

Please sign in to comment.