Skip to content

Commit

Permalink
Add Prettier and Eslint ignore files
Browse files Browse the repository at this point in the history
  • Loading branch information
jtquach1 committed Oct 23, 2023
1 parent 08d37a0 commit ed66144
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
5 changes: 5 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Production
build

# Dependencies
node_modules
9 changes: 3 additions & 6 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
{
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier"
],
"extends": ["plugin:@typescript-eslint/recommended", "prettier"],
"plugins": ["eslint-plugin-react"],
"parserOptions": {
"ecmaVersion": 2018,
Expand All @@ -15,6 +12,6 @@
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-explicit-any": "off"
}
}
}
8 changes: 8 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Production
build

# Dependencies
node_modules

# This gets modified via `npm install`
package-lock.json

0 comments on commit ed66144

Please sign in to comment.