Skip to content
This repository has been archived by the owner on Aug 27, 2021. It is now read-only.

Commit

Permalink
First commit 💥
Browse files Browse the repository at this point in the history
  • Loading branch information
justinwhall committed Apr 10, 2018
0 parents commit a42fe3e
Show file tree
Hide file tree
Showing 1,470 changed files with 86,610 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"plugins": ["lodash"]
}
1 change: 1 addition & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Last 2 versions
20 changes: 20 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
engines:
eslint:
enabled: true
stylelint:
enabled: true
duplication:
enabled: true
config:
languages:
javascript:
mass_threshold: 70

ratings:
paths:
- "**.js"
- "**.jsx"
- "**.css"

exclude_paths:
- static/**/*
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
public
static
.cache
content
15 changes: 15 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"extends": ["airbnb", "prettier"],
"plugins": ["react", "jsx-a11y", "import"],
"rules": {
"react/prefer-stateless-function": "off",
"react/prop-types": "off",
"react/no-danger": "off"
},
"settings": {
"import/core-modules": []
},
"env": {
"browser": true
}
}
29 changes: 29 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
.vagrant/
.jekyll_indextank/
.rvmrc
_config.yml
_config.dev.yml
_config.deploy.yml
.bundle
.DS_Store
.sass-cache
.gist-cache
.idea
.pygments-cache
_deploy
sass.old
source.old
source/_stash
source/stylesheets/screen.css
vendor
node_modules
pdf
public
linklint_logs
bower_components
source/_assets/bower_components
source/.asset_pipeline
npm-debug.log
package-lock.json
yarn.lock
.cache
5 changes: 5 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
Loading

0 comments on commit a42fe3e

Please sign in to comment.