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.16.2
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.16.3
Choose a head ref
  • 7 commits
  • 6 files changed
  • 2 contributors

Commits on Jul 21, 2021

  1. Verified

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

Commits on Jul 24, 2021

  1. Copy the full SHA
    1bc19d5 View commit details
  2. Verified

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

Commits on Sep 4, 2021

  1. Verified

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

Commits on Sep 14, 2021

  1. Merge pull request #50 from atom-community/renovate/actions-setup-nod…

    …e-2.x
    
    chore(deps): update actions/setup-node action to v2
    aminya authored Sep 14, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    40124ba View commit details
  2. Merge pull request #51 from atom-community/renovate/wagoid-commitlint…

    …-github-action-4.x
    
    chore(deps): update wagoid/commitlint-github-action action to v4
    aminya authored Sep 14, 2021

    Verified

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

Commits on Sep 21, 2021

  1. fix: update dependencies

    aminya committed Sep 21, 2021

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    bf1d8f8 View commit details
Showing with 2,457 additions and 11,320 deletions.
  1. +20 −0 .github/renovate.json
  2. +2 −2 .github/workflows/CI.yml
  3. +0 −70 .github/workflows/bump_deps.yml
  4. +11 −11 package.json
  5. +2,422 −11,237 pnpm-lock.yaml
  6. +2 −0 pnpm-workspace.yaml
20 changes: 20 additions & 0 deletions .github/renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"schedule": ["every weekend"],
"labels": ["dependencies"],
"separateMajorMinor": "false",
"packageRules": [
{
"matchDepTypes": ["devDependencies"],
"matchUpdateTypes": ["major", "minor", "patch", "pin", "digest", "lockFileMaintenance", "rollback", "bump"],
"groupName": "devDependencies",
"semanticCommitType": "chore",
"automerge": true
},
{
"matchDepTypes": ["dependencies"],
"matchUpdateTypes": ["major", "minor", "patch", "pin", "digest", "lockFileMaintenance", "rollback", "bump"],
"groupName": "dependencies",
"semanticCommitType": "fix"
}
]
}
4 changes: 2 additions & 2 deletions .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@v2
uses: wagoid/commitlint-github-action@v4

- name: Install dependencies
run: npm install
@@ -62,7 +62,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: UziTech/action-setup-atom@v1
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: "12.x"
- name: NPM install
70 changes: 0 additions & 70 deletions .github/workflows/bump_deps.yml

This file was deleted.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -33,22 +33,22 @@
},
"dependencies": {
"@babel/core": "^7",
"@babel/eslint-parser": "^7.14.7",
"@babel/eslint-parser": "^7.15.7",
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-syntax-jsx": "^7.14.5",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"coffeescript": "^1",
"eslint": "^7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-coffee": "^0.1.14",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-json": "^3.0.0",
"eslint-plugin-coffee": "^0.1.15",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-only-warn": "npm:@aminya/eslint-plugin-only-warn@^1.2.2",
"eslint-plugin-optimize-regex": "^1.2.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-yaml": "^0.5.0",
"prettier": "^2",
"typescript": "^4"
@@ -59,8 +59,8 @@
"devDependencies": {
"eslint": "^7.22.0",
"execa": "^5.1.1",
"gitly": "^2.1.2",
"npm-check-updates": "11.8.3",
"gitly": "^2.1.5",
"npm-check-updates": "11.8.5",
"prettier-config-atomic": "^2.0.5",
"shelljs": "^0.8.4"
}
Loading