Skip to content

Commit

Permalink
Remove unused packages; update packages to latest; add lint/prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
robdecker committed Nov 14, 2021
1 parent e4dca53 commit 598836e
Show file tree
Hide file tree
Showing 4 changed files with 1,977 additions and 1,601 deletions.
20 changes: 20 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"env": {
"browser": true,
"node": true,
"es2021": true
},
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"rules": {
"quotes": ["error", "single"],
"semi": ["error", "always"],
"indent": ["error", 2],
"no-multi-spaces": ["error"]
}
}
8 changes: 8 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"printWidth": 100,
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"endOfLine": "lf"
}
Loading

0 comments on commit 598836e

Please sign in to comment.