Skip to content

Commit

Permalink
refactored doc structure and code style
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Rhodes committed Nov 1, 2018
1 parent 19995fb commit ec5bcc5
Show file tree
Hide file tree
Showing 57 changed files with 2,452 additions and 2,067 deletions.
22 changes: 15 additions & 7 deletions .eslintrc
Expand Up @@ -5,8 +5,10 @@
"jest": true
},
"extends": [
"google",
"plugin:react/recommended"
"airbnb"
],
"plugins": [
"babel"
],
"parser": "babel-eslint",
"parserOptions": {
Expand All @@ -21,12 +23,18 @@
"never"
],
"object-curly-spacing": "off",
"react/jsx-uses-react": "error",
"react/prop-types": "off",
"react/no-unescaped-entities": "off",
"object-curly-newline": "off",
"require-jsdoc": "off",
"indent": "off",
"no-invalid-this": "off",
"max-len": "off"
"max-len": "off",
"react/require-default-props": "off",
"react/destructuring-assignment": "off",
"react/prop-types": "off",
"arrow-body-style": "off",
"no-confusing-arrow": "off",
"react/no-unescaped-entities": "off",
"jsx-a11y/mouse-events-have-key-events": "off",
"jsx-a11y/click-events-have-key-events": "off",
"import/no-extraneous-dependencies": "off"
}
}
228 changes: 223 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Expand Up @@ -42,7 +42,9 @@
"enzyme-adapter-react-16": "^1.6.0",
"enzyme-to-json": "^3.3.4",
"eslint": "^5.8.0",
"eslint-config-google": "^0.11.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"favicons-webpack-plugin": "0.0.9",
"file-loader": "^2.0.0",
Expand Down
52 changes: 0 additions & 52 deletions src/docs/Content/AdvancedUsage/index.js

This file was deleted.

0 comments on commit ec5bcc5

Please sign in to comment.