Unverified Commit f249c067 authored by Jacob Kaufman's avatar Jacob Kaufman Committed by GitHub
Browse files

Merge pull request #29 from jkaufy/master

Coordinate Class, Changed File Structure, and Added Jupyter Notebook
parents 0797a643 aa91e657
Loading
Loading
Loading
Loading

.DS_Store

0 → 100644
+8 KiB

File added.

No diff preview for this file type.

.babelrc

deleted100644 → 0
+0 −28
Original line number Diff line number Diff line
{
  "presets": ["airbnb"],
  "plugins": [
    [
      "babel-plugin-import",
      {
        "libraryName": "@material-ui/core",
        "libraryDirectory": "esm",
        "camel2DashComponentName": false
      },
      "core"
    ],
    [
      "babel-plugin-import",
      {
        "libraryName": "@material-ui/icons",
        "libraryDirectory": "esm",
        "camel2DashComponentName": false
      },
      "icons"
    ]
  ],
  "env": {
    "production": {
      "presets": ["minify"]
    }
  }
}

.eslintrc

deleted100644 → 0
+0 −18
Original line number Diff line number Diff line
{
  "env": {
    "es6": true,
    "browser": true
  },
  "extends": ["airbnb-base", "prettier"],
  "plugins": ["prettier"],
  "rules": {
    "prettier/prettier": "error"
  },
  "ignorePatterns": [
    ".prettierrc",
    "postcss.config.js",
    ".eslintrc",
    ".babelrc",
    "webpack.*"
  ]
}

.gitignore

deleted100644 → 0
+0 −16
Original line number Diff line number Diff line
.cache/
coverage/
dist/*
node_modules/
*.log
package-lock.json
.dist/

# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

.prettierrc

deleted100644 → 0
+0 −1
Original line number Diff line number Diff line
{}
Loading