Skip to content

Commit

Permalink
linting af
Browse files Browse the repository at this point in the history
  • Loading branch information
ccabo1 committed Sep 15, 2019
1 parent 2d6359f commit 5f8afce
Show file tree
Hide file tree
Showing 72 changed files with 775 additions and 11,113 deletions.
19 changes: 10 additions & 9 deletions .eslintrc.js
@@ -1,10 +1,11 @@
module.exports = {
"extends": "airbnb",
"rules": {
"react/jsx-filename-extension": [
1, { "extensions": [ ".js", ".jsx" ] }
],
"import/prefer-default-export": 0,
"semi": 0,
}
};
extends: ['airbnb', 'prettier'],
plugins: ['prettier'],
rules: {
'prettier/prettier': ['error'],
'react/jsx-filename-extension': [1, { extensions: ['.js', '.jsx'] }],
'import/prefer-default-export': 0,
'arrow-parens': 0,
semi: 0,
},
}
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -12,7 +12,7 @@ node -v

If your Node version is not `10.x`, consider using Node Version Manager (nvm) to handle changing versions of node.

After a `env.sh` file containing `PORT` and `MONGO_URL` values is created:
After a `env.sh` file containing `PORT`, `GOOGLE_KEY`, and `MONGO_URI` values is created:

```
git clone https://github.com/pennlabs/pennbasics.git
Expand Down

0 comments on commit 5f8afce

Please sign in to comment.