Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update all dependencies #50

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
9115f18
feat(ci): drop Node.js 12, add Node.js 16 & 18
gurpreetatwal Jan 17, 2022
8c95fa6
chore: bump TODOs
gurpreetatwal Jul 14, 2022
bf64cd7
test: remove usage of deprecated CLIEngine class
gurpreetatwal Jul 13, 2022
d268dfd
fix: enable options for `array-callback-return`
gurpreetatwal Jan 19, 2022
91dffcd
chore: move @smartcar/prettier-config to devDeps
gurpreetatwal Jul 14, 2022
c7d7b27
chore: upgrade all dev deps other than ESLint
gurpreetatwal Jul 9, 2022
0ea4da0
feat: bump ESLint from 7.32.0 to 8.19.0
gurpreetatwal Jul 14, 2022
347ad60
feat: switch from eslint-plugin-node to eslint-plugin-n
gurpreetatwal Jul 11, 2022
489bc7a
fix: bump prettier config and plugin
gurpreetatwal Jun 25, 2021
b603022
feat: bump eslint-plugin-lodash from 7.1.0 to 7.4.0
gurpreetatwal Jan 17, 2022
c8de800
feat: bump eslint-plugin-mocha from 8.0.0 to 10.0.5
gurpreetatwal Jan 17, 2022
a516d62
feat: bump eslint-plugin-import from 2.22.1 to 2.26.0
gurpreetatwal Jul 2, 2021
acdc24a
feat: bump eslint-plugin-promise from 4.2.1 to 6.0.0
gurpreetatwal Jan 17, 2022
a4dcc50
feat: bump eslint-plugin-sonarjs from 0.6.0 to 0.13.0
gurpreetatwal Jan 19, 2022
6cf810e
feat: bump eslint-plugin-unicorn from 23.0.0 to 24.0.0
gurpreetatwal Jan 19, 2022
05db6bb
feat: bump eslint-plugin-unicorn from 24.0.0 to 25.0.1
gurpreetatwal Jul 2, 2021
9572772
feat: bump eslint-plugin-unicorn from 25.0.0 to 43.0.1
gurpreetatwal Jan 19, 2022
27e55bb
feat: bump eslint-plugin-ava from 11.0.0 to 13.2.0
gurpreetatwal Jun 25, 2021
3cb8ee6
feat: bump eslint-plugin-jsdoc from 30.7.8 to 39.3.3
gurpreetatwal Jul 11, 2022
3482ba4
chore: set up pre-commit hook using husky
gurpreetatwal Jul 14, 2022
0cc78bb
chore: set up dependabot for npm packages
gurpreetatwal Jul 14, 2022
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
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version: 2
updates:
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'weekly'
reviewers:
- 'gurpreetatwal'
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npm run lint
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
dist: focal

language:
- node_js

node_js:
- '18'
- '16'
- '14'
- '12'

before_install:
- npm install -g [email protected]
Expand All @@ -26,11 +29,12 @@ script:
- npm test
- npm run lint
- sort-package-json --check
- prettier --check .

deploy:
provider: script
skip_cleanup: true
script: NPM_TOKEN=$GH_TOKEN semantic-release
on:
node_js: '14'
node_js: '18'
all_branches: true
4 changes: 0 additions & 4 deletions ava.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,22 @@ module.exports = {
'ava/hooks-order': 'error',
'ava/max-asserts': 'off',
'ava/no-async-fn-without-await': 'off', // use `require-await`
'ava/no-cb-test': 'off',
'ava/no-duplicate-modifiers': 'error',
'ava/no-identical-title': 'error',
'ava/no-ignored-test-files': 'error',
'ava/no-import-test-files': 'error',
'ava/no-incorrect-deep-equal': 'error',
'ava/no-inline-assertions': 'error',
'ava/no-invalid-end': 'error',
'ava/no-nested-tests': 'error',
'ava/no-only-test': 'warn',
'ava/no-skip-assert': 'warn',
'ava/no-skip-test': 'warn',
'ava/no-statement-after-end': 'error',
'ava/no-todo-implementation': 'error',
'ava/no-todo-test': 'warn',
'ava/no-unknown-modifiers': 'error',
'ava/prefer-async-await': 'error',
'ava/prefer-power-assert': 'off',
'ava/prefer-t-regex': 'error',
'ava/test-ended': 'error',
'ava/test-title': 'error',
'ava/test-title-format': 'off',
'ava/use-t': 'error',
Expand Down
Loading