Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: eslint-community/eslint-plugin-promise
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.4.0
Choose a base ref
...
head repository: eslint-community/eslint-plugin-promise
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 46667d3657a218191d1360b3de7e391d6557274e
Choose a head ref
  • 7 commits
  • 14 files changed
  • 5 contributors

Commits on Jul 17, 2024

  1. refactor: migrate all message to messageId (#482)

    scagood authored Jul 17, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    b0fc13b View commit details

Commits on Jul 19, 2024

  1. docs: update README (#383)

    Romick2005 authored Jul 19, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    d8d0fbe View commit details
  2. chore: add format workflow (#441)

    MichaelDeBoey authored Jul 19, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    1376ecf View commit details
  3. chore(deps-dev): bump eslint-plugin-jest from 26.9.0 to 28.6.0 (#474)

    dependabot[bot] authored Jul 19, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    744ef1d View commit details
  4. chore(deps-dev): bump lint-staged from 12.5.0 to 15.2.7 (#476)

    dependabot[bot] authored Jul 19, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    1c951cd View commit details
  5. feat: add name property to configs (for use with tooling) (#486)

    brettz9 authored Jul 19, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    ca9e9b4 View commit details
  6. chore: avoid recursion in format/lint (#487)

    brettz9 authored Jul 19, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    46667d3 View commit details
Showing with 1,118 additions and 668 deletions.
  1. +44 −0 .github/workflows/format.yml
  2. +2 −1 README.md
  3. +2 −0 index.js
  4. +1,020 −647 package-lock.json
  5. +3 −3 package.json
  6. +4 −1 rules/always-return.js
  7. +4 −1 rules/avoid-new.js
  8. +4 −1 rules/no-nesting.js
  9. +4 −1 rules/no-new-statics.js
  10. +4 −1 rules/no-promise-in-callback.js
  11. +4 −1 rules/no-return-in-finally.js
  12. +8 −4 rules/param-names.js
  13. +4 −1 rules/prefer-await-to-then.js
  14. +11 −6 rules/valid-params.js
44 changes: 44 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: 👔 Format

on:
push:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
format:
if: github.repository == 'eslint-community/eslint-plugin/promise'
runs-on: ubuntu-latest

steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v3

- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 18

- name: 📥 Install deps
run: npm install

- name: 👔 Format
run: npm run format

- name: 💪 Commit
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add .
if [ -z "$(git status --porcelain)" ]; then
echo "💿 no formatting changed"
exit 0
fi
git commit -m "chore: format"
git push
echo "💿 pushed formatting changes https://github.com/$GITHUB_REPOSITORY/commit/$(git rev-parse HEAD)"
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -61,7 +61,8 @@ Then configure the rules you want to use under the rules section.
"promise/avoid-new": "warn",
"promise/no-new-statics": "error",
"promise/no-return-in-finally": "warn",
"promise/valid-params": "warn"
"promise/valid-params": "warn",
"promise/no-multiple-resolved": "error"
}
}
```
2 changes: 2 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -43,10 +43,12 @@ const pluginPromise = {
}
pluginPromise.configs = {
recommended: {
name: 'promise/recommended',
plugins: ['promise'],
rules: recommendedRules,
},
'flat/recommended': {
name: 'promise/flat/recommended',
plugins: { promise: pluginPromise },
rules: recommendedRules,
},
Loading