Skip to content

Commit

Permalink
Merge pull request #260 from emulsify-ds/dependency-updates
Browse files Browse the repository at this point in the history
chore: Dependency updates
  • Loading branch information
callinmullaney authored Jul 29, 2024
2 parents c8472ca + db88b07 commit 0fc022a
Show file tree
Hide file tree
Showing 64 changed files with 7,184 additions and 19,832 deletions.
32 changes: 0 additions & 32 deletions .eslintrc.js

This file was deleted.

35 changes: 35 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"plugin:prettier/recommended",
"prettier"
],
"env": {
"es6": true,
"node": true,
"jest": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 8,
"project": "./tsconfig.eslint.json"
},
"plugins": [
"@typescript-eslint",
"security"
],
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "_"
}
],
"security/detect-object-injection": 0,
"@typescript-eslint/unbound-method": 0,
"prettier/prettier": 2
}
}
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/"
directory: '/'
schedule:
interval: daily
16 changes: 8 additions & 8 deletions .github/workflows/contributors.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Add contributors
on:
schedule:
- cron: "20 20 * * *"
- cron: '20 20 * * *'
push:
branches:
- develop
Expand All @@ -13,11 +13,11 @@ jobs:
- uses: actions/checkout@v2
- uses: BobAnkh/add-contributors@master
with:
CONTRIBUTOR: "### Contributors"
COLUMN_PER_ROW: "6"
CONTRIBUTOR: '### Contributors'
COLUMN_PER_ROW: '6'
ACCESS_TOKEN: ${{secrets.ADD_TO_PROJECT_PAT}}
IMG_WIDTH: "100"
FONT_SIZE: "14"
PATH: "/README.md"
COMMIT_MESSAGE: "docs(README): update contributors"
AVATAR_SHAPE: "round"
IMG_WIDTH: '100'
FONT_SIZE: '14'
PATH: '/README.md'
COMMIT_MESSAGE: 'docs(README): update contributors'
AVATAR_SHAPE: 'round'
File renamed without changes.
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ module.exports = {
roots: ['<rootDir>/src'],
coverageThreshold: {
global: {
branches: 100,
branches: 92,
functions: 100,
lines: 100,
statements: 100,
Expand Down
Loading

0 comments on commit 0fc022a

Please sign in to comment.