Skip to content

Commit

Permalink
Bump ESLint & related deps (#782)
Browse files Browse the repository at this point in the history
* Bump eslint & related deps

* Fix lint errors

* Add eslint-config-prettier
  • Loading branch information
jhen0409 authored Jul 25, 2023
1 parent a1c272c commit ec340b3
Show file tree
Hide file tree
Showing 86 changed files with 3,778 additions and 3,409 deletions.
7 changes: 4 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"parser": "babel-eslint",
"extends": "airbnb",
"parser": "@babel/eslint-parser",
"extends": ["airbnb", "prettier"],
"env": {
"browser": true,
"node": true,
Expand Down Expand Up @@ -33,6 +33,7 @@
],
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }],
"import/prefer-default-export": 0,
"import/no-extraneous-dependencies": ["error", { "optionalDependencies": true }]
"import/no-extraneous-dependencies": ["error", { "optionalDependencies": true }],
"semi": ["error", "never"]
}
}
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"semi": false,
"singleQuote": true,
"printWidth": 80
}
Loading

0 comments on commit ec340b3

Please sign in to comment.