eslint-config-scratch 8.0.0 → 9.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.circleci/config.yml +30 -0
- package/.husky/.gitattributes +1 -0
- package/.husky/commit-msg +4 -0
- package/CHANGELOG.md +23 -0
- package/commitlint.config.js +4 -0
- package/pack/eslint-config-scratch-9.0.1.tgz +0 -0
- package/package.json +11 -6
- package/release.config.js +9 -0
- package/.travis.yml +0 -12
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
version: 2.1
|
|
2
|
+
orbs:
|
|
3
|
+
commitlint: conventional-changelog/commitlint@1.0.0
|
|
4
|
+
node: circleci/node@5.0.3
|
|
5
|
+
alias:
|
|
6
|
+
- &defaults
|
|
7
|
+
docker:
|
|
8
|
+
- image: cimg/node:18.12.1
|
|
9
|
+
executor: node/default
|
|
10
|
+
jobs:
|
|
11
|
+
main-job:
|
|
12
|
+
<<: *defaults
|
|
13
|
+
steps:
|
|
14
|
+
- checkout
|
|
15
|
+
- node/install-packages
|
|
16
|
+
- run: npm test
|
|
17
|
+
- run: npx --no -- semantic-release
|
|
18
|
+
workflows:
|
|
19
|
+
version: 2
|
|
20
|
+
commitlint:
|
|
21
|
+
jobs:
|
|
22
|
+
- commitlint/lint:
|
|
23
|
+
target-branch: master
|
|
24
|
+
filters:
|
|
25
|
+
branches:
|
|
26
|
+
ignore:
|
|
27
|
+
- master
|
|
28
|
+
main-workflow:
|
|
29
|
+
jobs:
|
|
30
|
+
- main-job
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
* text eol=lf
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. See
|
|
4
|
+
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
## [9.0.1](https://github.com/LLK/eslint-config-scratch/compare/v9.0.0...v9.0.1) (2023-03-23)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **deps:** update dependency scratch-semantic-release-config to v1.0.6 ([82b06e0](https://github.com/LLK/eslint-config-scratch/commit/82b06e07d09a79dcd5f72739ca21eb1f03b793df))
|
|
12
|
+
|
|
13
|
+
# [9.0.0](https://github.com/LLK/eslint-config-scratch/compare/v8.0.0...v9.0.0) (2022-10-13)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* **deps:** fix eslint-plugin-react dep conflict ([cacb72c](https://github.com/LLK/eslint-config-scratch/commit/cacb72c2281b99b5b3f7462256451443ae98e1bb))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### BREAKING CHANGES
|
|
22
|
+
|
|
23
|
+
* **deps:** now requires eslint@^8
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-scratch",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.1",
|
|
4
4
|
"description": "Shareable ESLint config for Scratch",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
7
|
+
"prepare": "husky install",
|
|
7
8
|
"test": "eslint ."
|
|
8
9
|
},
|
|
9
10
|
"eslintConfig": {
|
|
@@ -25,20 +26,24 @@
|
|
|
25
26
|
"scratch"
|
|
26
27
|
],
|
|
27
28
|
"optionalDependencies": {
|
|
28
|
-
"eslint-plugin-react": ">=7.
|
|
29
|
+
"eslint-plugin-react": ">=7.27.0"
|
|
29
30
|
},
|
|
30
31
|
"peerDependencies": {
|
|
31
32
|
"@babel/eslint-parser": "^7.11.0",
|
|
32
|
-
"eslint": "^
|
|
33
|
+
"eslint": "^8.0.0"
|
|
33
34
|
},
|
|
34
35
|
"devDependencies": {
|
|
35
36
|
"@babel/eslint-parser": "7.17.0",
|
|
36
|
-
"
|
|
37
|
-
"
|
|
37
|
+
"@commitlint/cli": "17.1.2",
|
|
38
|
+
"@commitlint/config-conventional": "17.1.0",
|
|
39
|
+
"eslint": "8.15.0",
|
|
40
|
+
"husky": "8.0.1",
|
|
41
|
+
"scratch-semantic-release-config": "1.0.6",
|
|
42
|
+
"semantic-release": "19.0.5"
|
|
38
43
|
},
|
|
39
44
|
"config": {
|
|
40
45
|
"commitizen": {
|
|
41
|
-
"path": "
|
|
46
|
+
"path": "cz-conventional-changelog"
|
|
42
47
|
}
|
|
43
48
|
}
|
|
44
49
|
}
|