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: atom-community/eslint-config-atomic
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.18.0
Choose a base ref
...
head repository: atom-community/eslint-config-atomic
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.18.1
Choose a head ref
  • 4 commits
  • 2 files changed
  • 2 contributors

Commits on Jun 18, 2022

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e690f30 View commit details

Commits on Jun 22, 2022

  1. Merge pull request #66 from atom-community/renovate/wagoid-commitlint…

    …-github-action-5.x [skip ci]
    aminya authored Jun 22, 2022
    Copy the full SHA
    7e26890 View commit details
  2. fix: add one-var to the rules

    aminya authored Jun 22, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4983c1f View commit details
  3. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    aa8dfa9 View commit details
Showing with 2 additions and 1 deletion.
  1. +1 −1 .github/workflows/CI.yml
  2. +1 −0 src/official-eslint-rules.js
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -43,7 +43,7 @@ jobs:
with:
fetch-depth: 0
- name: Commit lint ✨
uses: wagoid/commitlint-github-action@v4
uses: wagoid/commitlint-github-action@v5

- name: Install dependencies
run: npm install
1 change: 1 addition & 0 deletions src/official-eslint-rules.js
Original file line number Diff line number Diff line change
@@ -111,4 +111,5 @@ exports.eslintRulesExtra = {
"prefer-spread": "error", // require spread operators instead of `.apply()`
"prefer-template": "error", // require template literals instead of string concatenation
"symbol-description": "error", // require symbol descriptions
"one-var": ["error", "never"], // enforces variables to be declared either separately
}