Skip to content

Commit

Permalink
chore(repo): add more files to ignore
Browse files Browse the repository at this point in the history
Signed-off-by: Antonette Caldwell <[email protected]>
  • Loading branch information
nebula-aac committed Nov 18, 2023
1 parent d36c19e commit 19c3a1d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
4 changes: 3 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ dist
storybook-static
*.md
site
apps/next-12
apps/next-12
.yarnrc.yml
.eslintrc.*js
7 changes: 6 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Ignore artifacts:
**/dist/**
**/coverage/**
**/.cache/**
**/.cache/**
**/.github/**
**/.yarn/**
site/public
.yarnrc.yml
.eslintrc.*js
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,13 @@
"lint": "yarn eslint && yarn prettier-eslint --list-different",
"lint:fix": "yarn eslint --fix",
"prepare": "node -e \"try { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\"",
"prettier-eslint": "yarn run prettier-eslint \"`pwd`/**/*.{ts,tsx}\""
"prettier-eslint": "yarn run prettier-eslint \"`pwd`/**/*.{js,jsx,ts,tsx}\""
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write -u"
],
"!**/*.{js,ts,jsx,tsx}": "prettier --write -u"
"prettier --write \"**/*.{js,jsx,ts,tsx}\" --config ./.prettierrc"
]
},
"config": {
"commitizen": {
Expand Down

0 comments on commit 19c3a1d

Please sign in to comment.