Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore: update deps and lint style
No change to logic. This updates dependencies and upgrades the lint
style to es6.

This also commits package-lock.json to the repo.
  • Loading branch information
nfischer committed May 12, 2025
commit 725bb30ab1b1399c795f40a9845706398f9a39a3
19 changes: 10 additions & 9 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,21 @@
},
"extends": "airbnb-base",
"rules": {
"import/no-mutable-exports": 0,
"comma-dangle": 0,
"curly": 0,
"func-names": 0,
"global-require": 0,
"vars-on-top": 0,
"spaced-comment": [2, "always", { "markers": ["@", "@include"], "exceptions": ["@"] }],
"no-param-reassign": 0,
"import/order": 0,
"no-console": 0,
"curly": 0,
"no-else-return": 0,
"no-param-reassign": 0,
"no-plusplus": 0,
"no-restricted-globals": 0,
"no-var": 0,
"prefer-arrow-callback": 0,
"prefer-template": 0,
"func-names": 0,
"import/no-extraneous-dependencies": ["error", {"devDependencies": true}],
"import/order": 0,
"no-restricted-globals": 0,
"spaced-comment": [2, "always", { "markers": ["@", "@include"], "exceptions": ["@"] }],
"vars-on-top": 0,
"new-cap": [2, {
"capIsNewExceptions": [
"ShellString"
Expand Down
3 changes: 0 additions & 3 deletions .npmrc

This file was deleted.

Loading