Unverified Commit 3e24057f authored by Scott Ames's avatar Scott Ames Committed by GitHub
Browse files

Merge pull request #35 from CartoCosmos/revert-29-master

Revert "Coordinate Class, Changed File Structure, and Added Jupyter Notebook"
parents f249c067 414bbe4c
Loading
Loading
Loading
Loading

.DS_Store

deleted100644 → 0
−8 KiB

File deleted.

.babelrc

0 → 100644
+28 −0
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

0 → 100644
+18 −0
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

0 → 100644
+16 −0
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

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