From 88896405c56e210733ab394aa33675ebdf859c54 Mon Sep 17 00:00:00 2001 From: Austin Willoughby Date: Fri, 27 Sep 2024 11:31:25 -0400 Subject: [PATCH] Updated gitignore and eslintrc --- .eslintrc | 8 ++++---- .gitignore | 13 ++++++++----- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/.eslintrc b/.eslintrc index 4183308..8327c9e 100644 --- a/.eslintrc +++ b/.eslintrc @@ -1,8 +1,8 @@ -{ +{ "extends": "airbnb/base", "rules": { - "no-underscore-dangle" : "off", - "no-plusplus": "off", - "import/extensions": "off" + "no-underscore-dangle": "off", + "no-plusplus": "off", + "import/extensions": "off" } } diff --git a/.gitignore b/.gitignore index 4dca693..c6c11e6 100644 --- a/.gitignore +++ b/.gitignore @@ -20,16 +20,16 @@ coverage # nyc test coverage .nyc_output -# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +# Grunt intermediate storage .grunt -# Bower dependency directory (https://bower.io/) +# Bower dependency directory bower_components # node-waf configuration .lock-wscript -# Compiled binary addons (https://nodejs.org/api/addons.html) +# Compiled binary addons build/Release # Dependency directories @@ -48,11 +48,14 @@ typings/ # Optional REPL history .node_repl_history -# Output of 'npm pack' +# Output of npm pack *.tgz # Yarn Integrity file .yarn-integrity # dotenv environment variables file -.env \ No newline at end of file +.env + +# vscode +.vscode/