Skip to content

Commit

Permalink
Updated gitignore and eslintrc
Browse files Browse the repository at this point in the history
  • Loading branch information
AustinWilloughby committed Sep 27, 2024
1 parent e6023e5 commit be4e2b1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
{
"extends": "airbnb/base",
"rules": {
"no-underscore-dangle" : "off",
"no-plusplus": "off",
"no-underscore-dangle": "off",
"no-plusplus": "off",
"import/extensions": "off"
}
}
13 changes: 8 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
.env

# vscode
.vscode/

0 comments on commit be4e2b1

Please sign in to comment.