diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 000000000..ad4aa2b97 --- /dev/null +++ b/.eslintignore @@ -0,0 +1,15 @@ +*.css +.changeset +dist +scripts/* +*.config.js +.DS_Store +node_modules +coverage +build +!.storybook +/**/.storybook/** +!.commitlintrc.cjs +!.lintstagedrc +!jest.config.js +!tsup.config.ts diff --git a/.gitignore b/.gitignore index 856deaa03..842760d93 100644 --- a/.gitignore +++ b/.gitignore @@ -1,31 +1,45 @@ + # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. # dependencies node_modules -.pnp +/.pnp .pnp.js # testing +/coverage coverage -build +# production +/build dist/ +storybook-static # misc .DS_Store -*.pem - -# debug -npm-debug.log* -yarn-debug.log* -yarn-error.log* - -# local env files .env .env.local .env.development.local .env.test.local .env.production.local +.env.production + +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# debug +npm-debug.log* +yarn-debug.log* +yarn-error.log* +.yarn-integrity +.idea +.now +dist +esm # turbo .turbo diff --git a/.prettierignore b/.prettierignore index 2b847c277..e8cf881d9 100644 --- a/.prettierignore +++ b/.prettierignore @@ -1,9 +1,14 @@ -.chglog -.git -.github -.husky -.storybook -/api -/build -/node_modules -/public +dist +node_modules +coverage +.changeset +build +scripts +pnpm-lock.yaml +!.storybook +!.commitlintrc.cjs +!.lintstagedrc +!jest.config.js +!plopfile.js +!react-shim.js +!tsup.config.ts