Skip to content

Commit

Permalink
chore(deps): update dependency eslint-config-altnext to v2 (#94)
Browse files Browse the repository at this point in the history
* chore(deps): update dependency eslint-config-altnext to v2

* chore: add changeset, update .eslintrc, fix lint issues

Co-authored-by: Renovate Bot <[email protected]>
Co-authored-by: roikoren755 <[email protected]>
  • Loading branch information
3 people authored Sep 27, 2021
1 parent ba985d9 commit f9578bd
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 11 deletions.
5 changes: 5 additions & 0 deletions .changeset/early-crews-beg.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'iql': patch
---

chore(deps): update dependency eslint-config-altnext to v2
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module.exports = {
extends: ['altnext/type-checking'],
extends: ['altnext'],
parserOptions: { tsconfigRootDir: __dirname, project: ['./tsconfig.eslint.json'] },
};
4 changes: 1 addition & 3 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
};
module.exports = { extends: ['@commitlint/config-conventional'] };
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"coverage": "jest --coverage",
"deduplicate": "yarn-deduplicate -s fewer",
"docs": "yarn typedoc --disableSources index.ts",
"lint": "eslint --ext .ts . --cache",
"lint": "eslint . --cache",
"prepare": "husky install",
"prerelease": "yarn build",
"release": "changeset publish",
Expand All @@ -50,7 +50,7 @@
"@types/jest": "27.0.2",
"@types/pg": "8.6.1",
"@jest/types": "27.1.1",
"eslint-config-altnext": "1.2.6",
"eslint-config-altnext": "2.0.0",
"husky": "7.0.2",
"jest": "27.2.2",
"jest-junit": "12.3.0",
Expand All @@ -66,6 +66,7 @@
"author": "Altnext Gorillaz",
"license": "MIT",
"eslintIgnore": [
"coverage",
"dist",
"node_modules"
],
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.eslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
"allowJs": true
},
"exclude": ["**/dist/**/*"],
"include": ["src/**/*", "index.ts", "jest.config.ts"]
"include": ["src/**/*", "index.ts", "jest.config.ts", ".eslintrc.js", ".prettierrc.js", "commitlint.config.js"]
}
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2278,10 +2278,10 @@ escodegen@^2.0.0:
optionalDependencies:
source-map "~0.6.1"

eslint-config-altnext@1.2.6:
version "1.2.6"
resolved "https://registry.yarnpkg.com/eslint-config-altnext/-/eslint-config-altnext-1.2.6.tgz#b9dee7d4c59286699937f17b6035fc0f8fb55bae"
integrity sha512-ud/Ya6QbBLFdWl/9qd84g+Pw535zPbH7hBwgpF/5739EchW+Z66UYiMccYWJZTBiLOBK6+waBPL/OsSmcjt6Vg==
eslint-config-altnext@2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/eslint-config-altnext/-/eslint-config-altnext-2.0.0.tgz#b76c9239ddf70e687a14b7d4fc2d9284a1fa212c"
integrity sha512-KyJ9l8RAtU9Vn0cfaBnjXclQyz4uIMBzr+Qt5ZPYkayYE+0TRciKBkn6swt5LIGE/USQZWnY3NoDGcDG04TZqg==
dependencies:
"@typescript-eslint/eslint-plugin" "4.31.2"
"@typescript-eslint/parser" "4.31.2"
Expand Down

0 comments on commit f9578bd

Please sign in to comment.