From 61238efd281d80aa88311ba93605f6b6054906b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Chif=20Gerg=C5=91?= <chif.gergo@cloud.bme.hu> Date: Thu, 6 Aug 2020 10:04:08 +0200 Subject: [PATCH] Add ignore files --- .eslintignore | 3 +++ .gitignore | 2 -- .prettierignore | 61 +++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 64 insertions(+), 2 deletions(-) create mode 100644 .eslintignore create mode 100644 .prettierignore diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 0000000..fd250ef --- /dev/null +++ b/.eslintignore @@ -0,0 +1,3 @@ +.*rc.js +.eslintrc*.js +.prettierrc.js diff --git a/.gitignore b/.gitignore index af115c9..a76b6de 100644 --- a/.gitignore +++ b/.gitignore @@ -51,8 +51,6 @@ package-lock.json *.jpg *.ico -# misc -.*ignore # Docker files Dockerfile* Dockerfile.* diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000..626f9cc --- /dev/null +++ b/.prettierignore @@ -0,0 +1,61 @@ +# from .gitignore +# dependencies +node_modules +.pnp +.pnp.js + +# Tests +coverage +.nyc_output + +# compiled output +build +dist + +# env +*.env* + +# OS +.DS_Store + +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +lerna-debug.log* + +# tools +.eslintcache + +# IDE +*.*workspace* +/.idea +.project +.classpath +.c9/ +*.launch +.settings/ +*.sublime-workspace +.vscode + +# commit these, but ignore format +# lock files +yarn.lock +package-lock.json + +# assets +*.png +*.jpeg +*.jpg +*.ico + +# misc +.*ignore +# Docker files +Dockerfile* +Dockerfile.* +docker-compose.* +# Configuration files +config/* -- GitLab