@nextcloud/eslint-config 8.3.0-beta.2 → 8.4.0
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/CHANGELOG.md +248 -244
- package/README.md +17 -2
- package/package.json +32 -28
- package/parts/base.js +110 -93
- package/parts/typescript.js +41 -35
- package/parts/vue.js +39 -40
- package/parts/vue3.js +39 -0
- package/typescript.js +23 -7
- package/vue3.js +41 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,428 +1,432 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
##
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v8.3.0-beta.1...v8.3.0-beta.2)
|
|
8
|
-
|
|
9
|
-
**Fixed:**
|
|
10
|
-
- chore: update typescript deps and co by @skjnldsv in https://github.com/nextcloud/eslint-config/pull/569
|
|
11
|
-
- fix: allow empty functions by @skjnldsv in https://github.com/nextcloud/eslint-config/pull/570
|
|
12
|
-
|
|
13
|
-
## [v8.3.0-beta.1](https://github.com/nextcloud/eslint-config/tree/v8.3.0-beta.1) (2023-06-27)
|
|
14
|
-
|
|
15
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v8.3.0-beta.0...v8.3.0-beta.1)
|
|
16
|
-
|
|
17
|
-
**Features:**
|
|
18
|
-
- Provide config for vue files written in Typescript, use `extends: "@nextcloud/eslint-config/typescript"`.
|
|
19
|
-
- Fully support vue files using the Composition API `<script setup>`.
|
|
20
|
-
|
|
21
|
-
**Fixed:**
|
|
22
|
-
- fix: Add Typescript overrides for all valid Typescript file extensions by @susnux in https://github.com/nextcloud/eslint-config/pull/567
|
|
23
|
-
|
|
24
|
-
## [v8.3.0-beta.0](https://github.com/nextcloud/eslint-config/tree/v8.3.0-beta.0) (2023-05-12)
|
|
25
|
-
|
|
26
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v8.2.1...v8.3.0-beta.0)
|
|
3
|
+
## [v8.4.0](https://github.com/nextcloud-libraries/eslint-config/tree/v8.4.0) (2024-05-15)
|
|
4
|
+
### Features
|
|
5
|
+
* Vue 3 support: There is a new sub-configuration for projects using Vue 3
|
|
27
6
|
|
|
28
|
-
|
|
29
|
-
-
|
|
30
|
-
- Various dependencies upgrades
|
|
7
|
+
## [v8.3.0](https://github.com/nextcloud-libraries/eslint-config/tree/v8.3.0) (2023-09-25)
|
|
8
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v8.2.1...v8.3.0)
|
|
31
9
|
|
|
32
|
-
|
|
10
|
+
### Features
|
|
11
|
+
* Typescript 5 support
|
|
12
|
+
* Allow linting of typescript with module resolution set to `node16` or `nodenext` by @susnux in https://github.com/nextcloud-libraries/eslint-config/pull/527
|
|
13
|
+
* Support Composition API & Typescript + Vue projects by @susnux in https://github.com/nextcloud-libraries/eslint-config/pull/562
|
|
14
|
+
* Allow linting of TSX files by @susnux in https://github.com/nextcloud-libraries/eslint-config/pull/456
|
|
33
15
|
|
|
34
|
-
|
|
16
|
+
### Fixes
|
|
17
|
+
* Ignore camelcase rule for __webpack variables by @kesselb in https://github.com/nextcloud-libraries/eslint-config/pull/530
|
|
18
|
+
* Add Typescript overrides for all valid Typescript file extensions by @susnux in https://github.com/nextcloud-libraries/eslint-config/pull/567
|
|
19
|
+
* Allow empty functions by @skjnldsv in https://github.com/nextcloud-libraries/eslint-config/pull/570
|
|
20
|
+
* fix(typescript): Also set the typescript settings to the vue overrides for typescript import resolving by @susnux in https://github.com/nextcloud-libraries/eslint-config/pull/639
|
|
21
|
+
* fix(typescript): Allow generic type parameters on function calls by @susnux in https://github.com/nextcloud-libraries/eslint-config/pull/571
|
|
22
|
+
* Make sure vue files written in Typescript are linted correctly by @susnux in https://github.com/nextcloud-libraries/eslint-config/pull/579
|
|
23
|
+
* fix: Allow to import packages from `devDependencies` within config files by @susnux in https://github.com/nextcloud-libraries/eslint-config/pull/580
|
|
24
|
+
* fix: Allow `@jest-environment` docblock for jest tests by @susnux in https://github.com/nextcloud-libraries/eslint-config/pull/592
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
* Various dependencies upgrades
|
|
28
|
+
* chore: Update `@nextcloud/eslint-plugin` to version 2.1.0 by @susnux in https://github.com/nextcloud-libraries/eslint-config/pull/605
|
|
29
|
+
* Drop webpack dependency by @susnux in https://github.com/nextcloud-libraries/eslint-config/pull/528
|
|
30
|
+
538
|
|
31
|
+
* Update node engines to next LTS (node 20 and NPM 9) by @nextcloud-command in https://github.com/nextcloud-libraries/eslint-config/pull/563
|
|
32
|
+
565
|
|
33
|
+
* Make eslint to take this config for linting the config by @susnux in https://github.com/nextcloud-libraries/eslint-config/pull/572
|
|
34
|
+
* chore: Fix URLs after package got transfered by @susnux in https://github.com/nextcloud-libraries/eslint-config/pull/602
|
|
35
|
+
|
|
36
|
+
## [v8.2.1](https://github.com/nextcloud-libraries/eslint-config/tree/v8.2.1) (2023-01-30)
|
|
37
|
+
|
|
38
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v8.2.0...v8.2.1)
|
|
35
39
|
|
|
36
40
|
**Fixed:**
|
|
37
|
-
- Fix resolving packages that use the package `exports` feature by @susnux in https://github.com/nextcloud/eslint-config/pull/452
|
|
41
|
+
- Fix resolving packages that use the package `exports` feature by @susnux in https://github.com/nextcloud-libraries/eslint-config/pull/452
|
|
38
42
|
|
|
39
43
|
**Merged pull requests:**
|
|
40
44
|
- Various dependencies upgrades
|
|
41
45
|
|
|
42
|
-
## [v8.2.0](https://github.com/nextcloud/eslint-config/tree/v8.2.0) (2023-01-11)
|
|
46
|
+
## [v8.2.0](https://github.com/nextcloud-libraries/eslint-config/tree/v8.2.0) (2023-01-11)
|
|
43
47
|
|
|
44
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v8.1.5...v8.2.0)
|
|
48
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v8.1.5...v8.2.0)
|
|
45
49
|
|
|
46
50
|
**Implemented enhancements:**
|
|
47
|
-
- feat: Add scripts for linting the config and fixed issues found [\#434](https://github.com/nextcloud/eslint-config/pull/434) ([susnux](https://github.com/susnux))
|
|
48
|
-
- feat: Add sub config for TypeScript projects [\#433](https://github.com/nextcloud/eslint-config/pull/433) ([susnux](https://github.com/susnux))
|
|
51
|
+
- feat: Add scripts for linting the config and fixed issues found [\#434](https://github.com/nextcloud-libraries/eslint-config/pull/434) ([susnux](https://github.com/susnux))
|
|
52
|
+
- feat: Add sub config for TypeScript projects [\#433](https://github.com/nextcloud-libraries/eslint-config/pull/433) ([susnux](https://github.com/susnux))
|
|
49
53
|
|
|
50
54
|
**Dependency updates:**
|
|
51
|
-
- Bump @babel/core from 7.20.7 to 7.20.12 [\#432](https://github.com/nextcloud/eslint-config/pull/432) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
52
|
-
- Bump eslint from 8.30.0 to 8.31.0 [\#431](https://github.com/nextcloud/eslint-config/pull/431) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
55
|
+
- Bump @babel/core from 7.20.7 to 7.20.12 [\#432](https://github.com/nextcloud-libraries/eslint-config/pull/432) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
56
|
+
- Bump eslint from 8.30.0 to 8.31.0 [\#431](https://github.com/nextcloud-libraries/eslint-config/pull/431) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
53
57
|
|
|
54
|
-
## [v8.1.5](https://github.com/nextcloud/eslint-config/tree/v8.1.5) (2023-01-02)
|
|
58
|
+
## [v8.1.5](https://github.com/nextcloud-libraries/eslint-config/tree/v8.1.5) (2023-01-02)
|
|
55
59
|
|
|
56
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v8.1.4...v8.1.5)
|
|
60
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v8.1.4...v8.1.5)
|
|
57
61
|
|
|
58
62
|
**Dependency updates:**
|
|
59
|
-
- Bump json5 from 1.0.1 to 1.0.2 by @PVince81 in https://github.com/nextcloud/eslint-config/pull/430
|
|
60
|
-
- Bump json5 from 2.2.1 to 2.2.3 by @PVince81 in https://github.com/nextcloud/eslint-config/pull/430
|
|
63
|
+
- Bump json5 from 1.0.1 to 1.0.2 by @PVince81 in https://github.com/nextcloud-libraries/eslint-config/pull/430
|
|
64
|
+
- Bump json5 from 2.2.1 to 2.2.3 by @PVince81 in https://github.com/nextcloud-libraries/eslint-config/pull/430
|
|
61
65
|
|
|
62
|
-
## [v8.1.4](https://github.com/nextcloud/eslint-config/tree/v8.1.4) (2022-11-17)
|
|
66
|
+
## [v8.1.4](https://github.com/nextcloud-libraries/eslint-config/tree/v8.1.4) (2022-11-17)
|
|
63
67
|
|
|
64
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v8.1.3...v8.1.4)
|
|
68
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v8.1.3...v8.1.4)
|
|
65
69
|
|
|
66
70
|
**Fixed:**
|
|
67
|
-
- Fix eslint-plugin-n conflict [\#421](https://github.com/nextcloud/eslint-config/pull/421) ([skjnldsv](https://github.com/skjnldsv))
|
|
71
|
+
- Fix eslint-plugin-n conflict [\#421](https://github.com/nextcloud-libraries/eslint-config/pull/421) ([skjnldsv](https://github.com/skjnldsv))
|
|
68
72
|
|
|
69
|
-
## [v8.1.3](https://github.com/nextcloud/eslint-config/tree/v8.1.3) (2022-11-04)
|
|
73
|
+
## [v8.1.3](https://github.com/nextcloud-libraries/eslint-config/tree/v8.1.3) (2022-11-04)
|
|
70
74
|
|
|
71
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v8.1.2...v8.1.3)
|
|
75
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v8.1.2...v8.1.3)
|
|
72
76
|
|
|
73
77
|
**Fixed:**
|
|
74
|
-
- Allow TypeScript syntax in JSDoc comments by @Pytal in https://github.com/nextcloud/eslint-config/pull/413
|
|
78
|
+
- Allow TypeScript syntax in JSDoc comments by @Pytal in https://github.com/nextcloud-libraries/eslint-config/pull/413
|
|
75
79
|
|
|
76
80
|
**Dependency updates:**
|
|
77
|
-
- Bump @babel/core from 7.18.10 to 7.19.6 by @dependabot in https://github.com/nextcloud/eslint-config/pull/404
|
|
78
|
-
- Bump @babel/eslint-parser from 7.18.9 to 7.19.1 by @dependabot in https://github.com/nextcloud/eslint-config/pull/392
|
|
79
|
-
- Bump eslint from 8.21.0 to 8.26.0 by @dependabot in https://github.com/nextcloud/eslint-config/pull/406
|
|
80
|
-
- Bump eslint-plugin-jsdoc from 39.3.13 to 39.6.2 by @dependabot in https://github.com/nextcloud/eslint-config/pull/414
|
|
81
|
-
- Bump eslint-plugin-n from 15.2.4 to 15.4.0 by @dependabot in https://github.com/nextcloud/eslint-config/pull/409
|
|
82
|
-
- Bump eslint-plugin-promise from 6.0.0 to 6.1.1 by @dependabot in https://github.com/nextcloud/eslint-config/pull/405
|
|
83
|
-
- Bump eslint-plugin-vue from 9.3.0 to 9.7.0 by @dependabot in https://github.com/nextcloud/eslint-config/pull/410
|
|
81
|
+
- Bump @babel/core from 7.18.10 to 7.19.6 by @dependabot in https://github.com/nextcloud-libraries/eslint-config/pull/404
|
|
82
|
+
- Bump @babel/eslint-parser from 7.18.9 to 7.19.1 by @dependabot in https://github.com/nextcloud-libraries/eslint-config/pull/392
|
|
83
|
+
- Bump eslint from 8.21.0 to 8.26.0 by @dependabot in https://github.com/nextcloud-libraries/eslint-config/pull/406
|
|
84
|
+
- Bump eslint-plugin-jsdoc from 39.3.13 to 39.6.2 by @dependabot in https://github.com/nextcloud-libraries/eslint-config/pull/414
|
|
85
|
+
- Bump eslint-plugin-n from 15.2.4 to 15.4.0 by @dependabot in https://github.com/nextcloud-libraries/eslint-config/pull/409
|
|
86
|
+
- Bump eslint-plugin-promise from 6.0.0 to 6.1.1 by @dependabot in https://github.com/nextcloud-libraries/eslint-config/pull/405
|
|
87
|
+
- Bump eslint-plugin-vue from 9.3.0 to 9.7.0 by @dependabot in https://github.com/nextcloud-libraries/eslint-config/pull/410
|
|
84
88
|
|
|
85
|
-
## [v8.1.2](https://github.com/nextcloud/eslint-config/tree/v8.1.2) (2022-08-09)
|
|
89
|
+
## [v8.1.2](https://github.com/nextcloud-libraries/eslint-config/tree/v8.1.2) (2022-08-09)
|
|
86
90
|
|
|
87
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v8.0.0...v8.1.2)
|
|
91
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v8.0.0...v8.1.2)
|
|
88
92
|
|
|
89
93
|
**Dependency updates:**
|
|
90
94
|
- Use [`eslint-plugin-n`](https://www.npmjs.com/package/eslint-plugin-n) instead of [`eslint-plugin-node`](https://www.npmjs.com/package/eslint-plugin-node)
|
|
91
95
|
|
|
92
|
-
## [v8.0.0](https://github.com/nextcloud/eslint-config/tree/v8.0.0) (2022-04-20)
|
|
96
|
+
## [v8.0.0](https://github.com/nextcloud-libraries/eslint-config/tree/v8.0.0) (2022-04-20)
|
|
93
97
|
|
|
94
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v7.0.2...v8.0.0)
|
|
98
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v7.0.2...v8.0.0)
|
|
95
99
|
|
|
96
100
|
**Breaking:**
|
|
97
|
-
- Require file extensions on import [\#292](https://github.com/nextcloud/eslint-config/pull/292) ([Pytal](https://github.com/Pytal))
|
|
101
|
+
- Require file extensions on import [\#292](https://github.com/nextcloud-libraries/eslint-config/pull/292) ([Pytal](https://github.com/Pytal))
|
|
98
102
|
|
|
99
103
|
**Dependency updates:**
|
|
100
|
-
- Bump eslint from 8.7.0 to 8.8.0 [\#282](https://github.com/nextcloud/eslint-config/pull/282) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
101
|
-
- Bump eslint from 8.8.0 to 8.9.0 [\#296](https://github.com/nextcloud/eslint-config/pull/296) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
104
|
+
- Bump eslint from 8.7.0 to 8.8.0 [\#282](https://github.com/nextcloud-libraries/eslint-config/pull/282) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
105
|
+
- Bump eslint from 8.8.0 to 8.9.0 [\#296](https://github.com/nextcloud-libraries/eslint-config/pull/296) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
102
106
|
|
|
103
|
-
## [v7.0.2](https://github.com/nextcloud/eslint-config/tree/v7.0.2) (2022-01-20)
|
|
107
|
+
## [v7.0.2](https://github.com/nextcloud-libraries/eslint-config/tree/v7.0.2) (2022-01-20)
|
|
104
108
|
|
|
105
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v7.0.1...v7.0.2)
|
|
109
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v7.0.1...v7.0.2)
|
|
106
110
|
|
|
107
111
|
**Fixed:**
|
|
108
|
-
- Fix usual same-line vue attribute behaviour [\#272](https://github.com/nextcloud/eslint-config/pull/272) ([skjnldsv](https://github.com/skjnldsv))
|
|
112
|
+
- Fix usual same-line vue attribute behaviour [\#272](https://github.com/nextcloud-libraries/eslint-config/pull/272) ([skjnldsv](https://github.com/skjnldsv))
|
|
109
113
|
|
|
110
114
|
**Dependency updates:**
|
|
111
|
-
- Bump eslint from 8.6.0 to 8.7.0 [\#271](https://github.com/nextcloud/eslint-config/pull/271) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
112
|
-
- Bump @babel/core from 7.16.7 to 7.16.10 [\#273](https://github.com/nextcloud/eslint-config/pull/273) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
115
|
+
- Bump eslint from 8.6.0 to 8.7.0 [\#271](https://github.com/nextcloud-libraries/eslint-config/pull/271) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
116
|
+
- Bump @babel/core from 7.16.7 to 7.16.10 [\#273](https://github.com/nextcloud-libraries/eslint-config/pull/273) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
113
117
|
|
|
114
|
-
## [v7.0.1](https://github.com/nextcloud/eslint-config/tree/v7.0.1) (2022-01-17)
|
|
118
|
+
## [v7.0.1](https://github.com/nextcloud-libraries/eslint-config/tree/v7.0.1) (2022-01-17)
|
|
115
119
|
|
|
116
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v7.0.0...v7.0.1)
|
|
120
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v7.0.0...v7.0.1)
|
|
117
121
|
|
|
118
122
|
**Fixed bugs:**
|
|
119
|
-
- Allow component names to be single-word [\#270](https://github.com/nextcloud/eslint-config/pull/270) ([skjnldsv](https://github.com/skjnldsv))
|
|
123
|
+
- Allow component names to be single-word [\#270](https://github.com/nextcloud-libraries/eslint-config/pull/270) ([skjnldsv](https://github.com/skjnldsv))
|
|
120
124
|
|
|
121
125
|
**Dependency updates:**
|
|
122
|
-
- Bump webpack from 5.65.0 to 5.66.0 [\#269](https://github.com/nextcloud/eslint-config/pull/269) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
123
|
-
- Bump eslint-plugin-vue from 8.2.0 to 8.3.0 [\#268](https://github.com/nextcloud/eslint-config/pull/268) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
126
|
+
- Bump webpack from 5.65.0 to 5.66.0 [\#269](https://github.com/nextcloud-libraries/eslint-config/pull/269) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
127
|
+
- Bump eslint-plugin-vue from 8.2.0 to 8.3.0 [\#268](https://github.com/nextcloud-libraries/eslint-config/pull/268) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
124
128
|
|
|
125
|
-
## [v7.0.0](https://github.com/nextcloud/eslint-config/tree/v7.0.0) (2022-01-12)
|
|
129
|
+
## [v7.0.0](https://github.com/nextcloud-libraries/eslint-config/tree/v7.0.0) (2022-01-12)
|
|
126
130
|
|
|
127
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v6.1.2...v7.0.0)
|
|
131
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v6.1.2...v7.0.0)
|
|
128
132
|
|
|
129
133
|
**Merged pull requests:**
|
|
130
|
-
- Eslint 8 [\#266](https://github.com/nextcloud/eslint-config/pull/266) ([skjnldsv](https://github.com/skjnldsv))
|
|
131
|
-
- v7.0.0 [\#267](https://github.com/nextcloud/eslint-config/pull/267) ([skjnldsv](https://github.com/skjnldsv))
|
|
132
|
-
## [v6.1.2](https://github.com/nextcloud/eslint-config/tree/v6.1.2) (2021-12-20)
|
|
134
|
+
- Eslint 8 [\#266](https://github.com/nextcloud-libraries/eslint-config/pull/266) ([skjnldsv](https://github.com/skjnldsv))
|
|
135
|
+
- v7.0.0 [\#267](https://github.com/nextcloud-libraries/eslint-config/pull/267) ([skjnldsv](https://github.com/skjnldsv))
|
|
136
|
+
## [v6.1.2](https://github.com/nextcloud-libraries/eslint-config/tree/v6.1.2) (2021-12-20)
|
|
133
137
|
|
|
134
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v6.1.1...v6.1.2)
|
|
138
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v6.1.1...v6.1.2)
|
|
135
139
|
|
|
136
140
|
**Fixes:**
|
|
137
|
-
- Fix vue custom event name casing [\#249](https://github.com/nextcloud/eslint-config/pull/249) ([Pytal](https://github.com/Pytal))
|
|
141
|
+
- Fix vue custom event name casing [\#249](https://github.com/nextcloud-libraries/eslint-config/pull/249) ([Pytal](https://github.com/Pytal))
|
|
138
142
|
|
|
139
|
-
## [v6.1.1](https://github.com/nextcloud/eslint-config/tree/v6.1.1) (2021-12-02)
|
|
143
|
+
## [v6.1.1](https://github.com/nextcloud-libraries/eslint-config/tree/v6.1.1) (2021-12-02)
|
|
140
144
|
|
|
141
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v6.1.0...v6.1.1)
|
|
145
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v6.1.0...v6.1.1)
|
|
142
146
|
|
|
143
147
|
**Fixes:**
|
|
144
|
-
- Disable tag rule [\#248](https://github.com/nextcloud/eslint-config/pull/248) ([skjnldsv](https://github.com/skjnldsv))
|
|
148
|
+
- Disable tag rule [\#248](https://github.com/nextcloud-libraries/eslint-config/pull/248) ([skjnldsv](https://github.com/skjnldsv))
|
|
145
149
|
|
|
146
|
-
## [v6.1.0](https://github.com/nextcloud/eslint-config/tree/v6.1.0) (2021-08-11)
|
|
150
|
+
## [v6.1.0](https://github.com/nextcloud-libraries/eslint-config/tree/v6.1.0) (2021-08-11)
|
|
147
151
|
|
|
148
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v6.0.1...v6.1.0)
|
|
152
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v6.0.1...v6.1.0)
|
|
149
153
|
|
|
150
154
|
**Fix dependency:**
|
|
151
155
|
- Remove undesired eslint-webpack-plugin ([skjnldsv](https://github.com/skjnldsv))
|
|
152
156
|
|
|
153
|
-
## [v6.0.1](https://github.com/nextcloud/eslint-config/tree/v6.0.1) (2021-08-11)
|
|
157
|
+
## [v6.0.1](https://github.com/nextcloud-libraries/eslint-config/tree/v6.0.1) (2021-08-11)
|
|
154
158
|
|
|
155
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v6.0.0...v6.0.1)
|
|
159
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v6.0.0...v6.0.1)
|
|
156
160
|
|
|
157
161
|
**Merged pull requests:**
|
|
158
|
-
- Fix license header tags spacing [\#180](https://github.com/nextcloud/eslint-config/pull/180) ([skjnldsv](https://github.com/skjnldsv))
|
|
162
|
+
- Fix license header tags spacing [\#180](https://github.com/nextcloud-libraries/eslint-config/pull/180) ([skjnldsv](https://github.com/skjnldsv))
|
|
159
163
|
|
|
160
|
-
## [v6.0.0](https://github.com/nextcloud/eslint-config/tree/v6.0.0)
|
|
164
|
+
## [v6.0.0](https://github.com/nextcloud-libraries/eslint-config/tree/v6.0.0)
|
|
161
165
|
|
|
162
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v5.1.1...v6.0.0)
|
|
166
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v5.1.1...v6.0.0)
|
|
163
167
|
|
|
164
168
|
### Breaking
|
|
165
169
|
|
|
166
|
-
- Require a space before async arrow function parentheses [\#146](https://github.com/nextcloud/eslint-config/pull/146) ([Pytal](https://github.com/Pytal))
|
|
170
|
+
- Require a space before async arrow function parentheses [\#146](https://github.com/nextcloud-libraries/eslint-config/pull/146) ([Pytal](https://github.com/Pytal))
|
|
167
171
|
|
|
168
172
|
### Features
|
|
169
173
|
|
|
170
|
-
- Allow testing-library in src [\#138](https://github.com/nextcloud/eslint-config/pull/138) ([artonge](https://github.com/artonge))
|
|
174
|
+
- Allow testing-library in src [\#138](https://github.com/nextcloud-libraries/eslint-config/pull/138) ([artonge](https://github.com/artonge))
|
|
171
175
|
|
|
172
176
|
### Fixes
|
|
173
177
|
|
|
174
|
-
- Use updated jsdoc rules [\#123](https://github.com/nextcloud/eslint-config/pull/123) ([artonge](https://github.com/artonge))
|
|
178
|
+
- Use updated jsdoc rules [\#123](https://github.com/nextcloud-libraries/eslint-config/pull/123) ([artonge](https://github.com/artonge))
|
|
175
179
|
|
|
176
|
-
## [v5.1.1](https://github.com/nextcloud/eslint-config/tree/v5.1.1)
|
|
180
|
+
## [v5.1.1](https://github.com/nextcloud-libraries/eslint-config/tree/v5.1.1)
|
|
177
181
|
|
|
178
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v5.1.0...v5.1.1)
|
|
182
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v5.1.0...v5.1.1)
|
|
179
183
|
|
|
180
|
-
- fix version and changelog [\#111](https://github.com/nextcloud/eslint-config/pull/111) ([dartcafe](https://github.com/dartcafe))
|
|
184
|
+
- fix version and changelog [\#111](https://github.com/nextcloud-libraries/eslint-config/pull/111) ([dartcafe](https://github.com/dartcafe))
|
|
181
185
|
|
|
182
|
-
## [v5.1.0](https://github.com/nextcloud/eslint-config/tree/v5.1.0) (2021-05-03)
|
|
186
|
+
## [v5.1.0](https://github.com/nextcloud-libraries/eslint-config/tree/v5.1.0) (2021-05-03)
|
|
183
187
|
|
|
184
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v5.1.0...v5.1.0)
|
|
188
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v5.1.0...v5.1.0)
|
|
185
189
|
|
|
186
190
|
**Merged pull requests:**
|
|
187
191
|
|
|
188
|
-
- remove eslint-plugin-standard [\#103](https://github.com/nextcloud/eslint-config/pull/103) ([dartcafe](https://github.com/dartcafe))
|
|
192
|
+
- remove eslint-plugin-standard [\#103](https://github.com/nextcloud-libraries/eslint-config/pull/103) ([dartcafe](https://github.com/dartcafe))
|
|
189
193
|
|
|
190
194
|
**Updated dependencies:**
|
|
191
195
|
|
|
192
|
-
- Bump webpack from 5.36.1 to 5.36.2 [\#112](https://github.com/nextcloud/eslint-config/pull/112) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
193
|
-
- Bump @babel/core from 7.13.16 to 7.14.0 [\#109](https://github.com/nextcloud/eslint-config/pull/109) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
194
|
-
- Bump webpack from 5.36.0 to 5.36.1 [\#108](https://github.com/nextcloud/eslint-config/pull/108) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
195
|
-
- Bump webpack from 5.35.0 to 5.36.0 [\#107](https://github.com/nextcloud/eslint-config/pull/107) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
196
|
-
- Bump eslint from 7.24.0 to 7.25.0 [\#104](https://github.com/nextcloud/eslint-config/pull/104) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
197
|
-
- Bump webpack from 5.34.0 to 5.35.0 [\#102](https://github.com/nextcloud/eslint-config/pull/102) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
198
|
-
- Bump @babel/core from 7.13.15 to 7.13.16 [\#100](https://github.com/nextcloud/eslint-config/pull/100) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
199
|
-
- Bump webpack from 5.33.2 to 5.34.0 [\#99](https://github.com/nextcloud/eslint-config/pull/99) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
200
|
-
- Bump eslint-webpack-plugin from 2.5.3 to 2.5.4 [\#98](https://github.com/nextcloud/eslint-config/pull/98) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
201
|
-
- Bump webpack from 5.32.0 to 5.33.2 [\#97](https://github.com/nextcloud/eslint-config/pull/97) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
202
|
-
- Bump webpack from 5.31.2 to 5.32.0 [\#96](https://github.com/nextcloud/eslint-config/pull/96) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
203
|
-
- Bump eslint-plugin-vue from 7.8.0 to 7.9.0 [\#95](https://github.com/nextcloud/eslint-config/pull/95) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
204
|
-
- Bump eslint from 7.23.0 to 7.24.0 [\#94](https://github.com/nextcloud/eslint-config/pull/94) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
205
|
-
- Bump webpack from 5.31.0 to 5.31.2 [\#93](https://github.com/nextcloud/eslint-config/pull/93) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
206
|
-
- Bump @babel/core from 7.13.14 to 7.13.15 [\#92](https://github.com/nextcloud/eslint-config/pull/92) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
207
|
-
- Bump webpack from 5.30.0 to 5.31.0 [\#91](https://github.com/nextcloud/eslint-config/pull/91) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
208
|
-
- Bump webpack from 5.28.0 to 5.30.0 [\#90](https://github.com/nextcloud/eslint-config/pull/90) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
209
|
-
- Bump @babel/eslint-parser from 7.13.10 to 7.13.14 [\#89](https://github.com/nextcloud/eslint-config/pull/89) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
210
|
-
- Bump eslint from 7.13.0 to 7.23.0 [\#88](https://github.com/nextcloud/eslint-config/pull/88) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
211
|
-
- Bump @babel/core from 7.13.13 to 7.13.14 [\#87](https://github.com/nextcloud/eslint-config/pull/87) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
212
|
-
|
|
213
|
-
## [v5.1.0](https://github.com/nextcloud/eslint-config/tree/v5.1.0) (2021-05-01)
|
|
214
|
-
|
|
215
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v5.0.0...v5.1.0)
|
|
196
|
+
- Bump webpack from 5.36.1 to 5.36.2 [\#112](https://github.com/nextcloud-libraries/eslint-config/pull/112) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
197
|
+
- Bump @babel/core from 7.13.16 to 7.14.0 [\#109](https://github.com/nextcloud-libraries/eslint-config/pull/109) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
198
|
+
- Bump webpack from 5.36.0 to 5.36.1 [\#108](https://github.com/nextcloud-libraries/eslint-config/pull/108) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
199
|
+
- Bump webpack from 5.35.0 to 5.36.0 [\#107](https://github.com/nextcloud-libraries/eslint-config/pull/107) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
200
|
+
- Bump eslint from 7.24.0 to 7.25.0 [\#104](https://github.com/nextcloud-libraries/eslint-config/pull/104) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
201
|
+
- Bump webpack from 5.34.0 to 5.35.0 [\#102](https://github.com/nextcloud-libraries/eslint-config/pull/102) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
202
|
+
- Bump @babel/core from 7.13.15 to 7.13.16 [\#100](https://github.com/nextcloud-libraries/eslint-config/pull/100) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
203
|
+
- Bump webpack from 5.33.2 to 5.34.0 [\#99](https://github.com/nextcloud-libraries/eslint-config/pull/99) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
204
|
+
- Bump eslint-webpack-plugin from 2.5.3 to 2.5.4 [\#98](https://github.com/nextcloud-libraries/eslint-config/pull/98) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
205
|
+
- Bump webpack from 5.32.0 to 5.33.2 [\#97](https://github.com/nextcloud-libraries/eslint-config/pull/97) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
206
|
+
- Bump webpack from 5.31.2 to 5.32.0 [\#96](https://github.com/nextcloud-libraries/eslint-config/pull/96) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
207
|
+
- Bump eslint-plugin-vue from 7.8.0 to 7.9.0 [\#95](https://github.com/nextcloud-libraries/eslint-config/pull/95) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
208
|
+
- Bump eslint from 7.23.0 to 7.24.0 [\#94](https://github.com/nextcloud-libraries/eslint-config/pull/94) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
209
|
+
- Bump webpack from 5.31.0 to 5.31.2 [\#93](https://github.com/nextcloud-libraries/eslint-config/pull/93) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
210
|
+
- Bump @babel/core from 7.13.14 to 7.13.15 [\#92](https://github.com/nextcloud-libraries/eslint-config/pull/92) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
211
|
+
- Bump webpack from 5.30.0 to 5.31.0 [\#91](https://github.com/nextcloud-libraries/eslint-config/pull/91) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
212
|
+
- Bump webpack from 5.28.0 to 5.30.0 [\#90](https://github.com/nextcloud-libraries/eslint-config/pull/90) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
213
|
+
- Bump @babel/eslint-parser from 7.13.10 to 7.13.14 [\#89](https://github.com/nextcloud-libraries/eslint-config/pull/89) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
214
|
+
- Bump eslint from 7.13.0 to 7.23.0 [\#88](https://github.com/nextcloud-libraries/eslint-config/pull/88) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
215
|
+
- Bump @babel/core from 7.13.13 to 7.13.14 [\#87](https://github.com/nextcloud-libraries/eslint-config/pull/87) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
216
|
+
|
|
217
|
+
## [v5.1.0](https://github.com/nextcloud-libraries/eslint-config/tree/v5.1.0) (2021-05-01)
|
|
218
|
+
|
|
219
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v5.0.0...v5.1.0)
|
|
216
220
|
|
|
217
221
|
**Closed issues:**
|
|
218
222
|
|
|
219
|
-
- Inconsistency between package.json and package-lock.json? [\#106](https://github.com/nextcloud/eslint-config/issues/106)
|
|
220
|
-
- Is eslint-plugin-standard still necessary as peerDependency? [\#101](https://github.com/nextcloud/eslint-config/issues/101)
|
|
223
|
+
- Inconsistency between package.json and package-lock.json? [\#106](https://github.com/nextcloud-libraries/eslint-config/issues/106)
|
|
224
|
+
- Is eslint-plugin-standard still necessary as peerDependency? [\#101](https://github.com/nextcloud-libraries/eslint-config/issues/101)
|
|
221
225
|
|
|
222
|
-
## [v5.0.0](https://github.com/nextcloud/eslint-config/tree/v5.0.0) (2021-03-29)
|
|
226
|
+
## [v5.0.0](https://github.com/nextcloud-libraries/eslint-config/tree/v5.0.0) (2021-03-29)
|
|
223
227
|
|
|
224
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v5.0.0-beta.0...v5.0.0)
|
|
228
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v5.0.0-beta.0...v5.0.0)
|
|
225
229
|
|
|
226
230
|
**Implemented enhancements:**
|
|
227
231
|
|
|
228
|
-
- Bump webpack to ^5.0.0 [\#79](https://github.com/nextcloud/eslint-config/pull/79) ([skjnldsv](https://github.com/skjnldsv))
|
|
232
|
+
- Bump webpack to ^5.0.0 [\#79](https://github.com/nextcloud-libraries/eslint-config/pull/79) ([skjnldsv](https://github.com/skjnldsv))
|
|
229
233
|
|
|
230
234
|
**Merged pull requests:**
|
|
231
235
|
|
|
232
|
-
- Bump eslint from 7.22.0 to 7.23.0 [\#86](https://github.com/nextcloud/eslint-config/pull/86) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
233
|
-
- Bump @babel/core from 7.13.10 to 7.13.13 [\#85](https://github.com/nextcloud/eslint-config/pull/85) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
234
|
-
- Bump eslint-webpack-plugin from 2.5.2 to 2.5.3 [\#84](https://github.com/nextcloud/eslint-config/pull/84) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
235
|
-
- Bump eslint-plugin-vue from 7.7.0 to 7.8.0 [\#83](https://github.com/nextcloud/eslint-config/pull/83) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
236
|
-
- Bump eslint from 7.21.0 to 7.22.0 [\#82](https://github.com/nextcloud/eslint-config/pull/82) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
236
|
+
- Bump eslint from 7.22.0 to 7.23.0 [\#86](https://github.com/nextcloud-libraries/eslint-config/pull/86) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
237
|
+
- Bump @babel/core from 7.13.10 to 7.13.13 [\#85](https://github.com/nextcloud-libraries/eslint-config/pull/85) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
238
|
+
- Bump eslint-webpack-plugin from 2.5.2 to 2.5.3 [\#84](https://github.com/nextcloud-libraries/eslint-config/pull/84) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
239
|
+
- Bump eslint-plugin-vue from 7.7.0 to 7.8.0 [\#83](https://github.com/nextcloud-libraries/eslint-config/pull/83) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
240
|
+
- Bump eslint from 7.21.0 to 7.22.0 [\#82](https://github.com/nextcloud-libraries/eslint-config/pull/82) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
237
241
|
|
|
238
|
-
## [v4.0.0](https://github.com/nextcloud/eslint-config/tree/v4.0.0)
|
|
242
|
+
## [v4.0.0](https://github.com/nextcloud-libraries/eslint-config/tree/v4.0.0)
|
|
239
243
|
|
|
240
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v3.0.0...v4.0.0)
|
|
244
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v3.0.0...v4.0.0)
|
|
241
245
|
|
|
242
246
|
**Breaking dependency upgrade:**
|
|
243
247
|
|
|
244
|
-
- Replace babel-eslint with @babel/eslint-parser [\#80](https://github.com/nextcloud/eslint-config/pull/80) ([st3iny](https://github.com/st3iny))
|
|
248
|
+
- Replace babel-eslint with @babel/eslint-parser [\#80](https://github.com/nextcloud-libraries/eslint-config/pull/80) ([st3iny](https://github.com/st3iny))
|
|
245
249
|
|
|
246
250
|
**Merged pull requests:**
|
|
247
251
|
|
|
248
|
-
- Bump elliptic from 6.5.3 to 6.5.4 [\#81](https://github.com/nextcloud/eslint-config/pull/81) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
249
|
-
- Bump eslint-plugin-vue from 7.6.0 to 7.7.0 [\#78](https://github.com/nextcloud/eslint-config/pull/78) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
250
|
-
- Bump eslint from 7.20.0 to 7.21.0 [\#77](https://github.com/nextcloud/eslint-config/pull/77) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
251
|
-
- Bump eslint-webpack-plugin from 2.5.1 to 2.5.2 [\#76](https://github.com/nextcloud/eslint-config/pull/76) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
252
|
-
- Bump eslint-webpack-plugin from 2.5.0 to 2.5.1 [\#75](https://github.com/nextcloud/eslint-config/pull/75) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
253
|
-
- Bump eslint-plugin-vue from 7.5.0 to 7.6.0 [\#74](https://github.com/nextcloud/eslint-config/pull/74) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
254
|
-
- Bump eslint from 7.19.0 to 7.20.0 [\#73](https://github.com/nextcloud/eslint-config/pull/73) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
255
|
-
- Bump eslint-plugin-promise from 4.2.1 to 4.3.1 [\#72](https://github.com/nextcloud/eslint-config/pull/72) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
256
|
-
- Bump eslint-webpack-plugin from 2.4.3 to 2.5.0 [\#71](https://github.com/nextcloud/eslint-config/pull/71) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
257
|
-
- Bump eslint from 7.18.0 to 7.19.0 [\#70](https://github.com/nextcloud/eslint-config/pull/70) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
258
|
-
- Bump eslint-plugin-vue from 7.4.1 to 7.5.0 [\#69](https://github.com/nextcloud/eslint-config/pull/69) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
259
|
-
- Bump eslint-webpack-plugin from 2.4.1 to 2.4.3 [\#68](https://github.com/nextcloud/eslint-config/pull/68) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
260
|
-
- Bump eslint from 7.17.0 to 7.18.0 [\#67](https://github.com/nextcloud/eslint-config/pull/67) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
261
|
-
- Bump webpack from 4.45.0 to 4.46.0 [\#66](https://github.com/nextcloud/eslint-config/pull/66) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
262
|
-
- Bump webpack from 4.44.2 to 4.45.0 [\#65](https://github.com/nextcloud/eslint-config/pull/65) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
263
|
-
- Bump eslint-plugin-vue from 7.4.0 to 7.4.1 [\#64](https://github.com/nextcloud/eslint-config/pull/64) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
264
|
-
- Bump eslint from 7.16.0 to 7.17.0 [\#63](https://github.com/nextcloud/eslint-config/pull/63) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
265
|
-
- Bump eslint-plugin-vue from 7.3.0 to 7.4.0 [\#62](https://github.com/nextcloud/eslint-config/pull/62) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
266
|
-
- Bump eslint from 7.15.0 to 7.16.0 [\#61](https://github.com/nextcloud/eslint-config/pull/61) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
267
|
-
- Bump eslint-plugin-vue from 7.2.0 to 7.3.0 [\#60](https://github.com/nextcloud/eslint-config/pull/60) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
268
|
-
- Bump eslint-plugin-vue from 7.1.0 to 7.2.0 [\#59](https://github.com/nextcloud/eslint-config/pull/59) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
269
|
-
- Bump eslint from 7.14.0 to 7.15.0 [\#58](https://github.com/nextcloud/eslint-config/pull/58) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
270
|
-
- Bump eslint-webpack-plugin from 2.4.0 to 2.4.1 [\#57](https://github.com/nextcloud/eslint-config/pull/57) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
271
|
-
- Bump eslint-webpack-plugin from 2.3.0 to 2.4.0 [\#56](https://github.com/nextcloud/eslint-config/pull/56) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
272
|
-
- Bump eslint from 7.13.0 to 7.14.0 [\#55](https://github.com/nextcloud/eslint-config/pull/55) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
273
|
-
- Bump eslint-config-standard from 16.0.1 to 16.0.2 [\#54](https://github.com/nextcloud/eslint-config/pull/54) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
274
|
-
- Bump eslint-webpack-plugin from 2.2.1 to 2.3.0 [\#53](https://github.com/nextcloud/eslint-config/pull/53) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
275
|
-
- Bump eslint-plugin-standard from 4.0.2 to 4.1.0 [\#52](https://github.com/nextcloud/eslint-config/pull/52) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
276
|
-
- Bump eslint from 7.12.1 to 7.13.0 [\#51](https://github.com/nextcloud/eslint-config/pull/51) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
277
|
-
- Bump eslint-webpack-plugin from 2.2.0 to 2.2.1 [\#50](https://github.com/nextcloud/eslint-config/pull/50) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
278
|
-
- Bump eslint-webpack-plugin from 2.1.0 to 2.2.0 [\#49](https://github.com/nextcloud/eslint-config/pull/49) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
279
|
-
|
|
280
|
-
## [v3.0.0](https://github.com/nextcloud/eslint-config/tree/v3.0.0) (2020-11-03)
|
|
281
|
-
|
|
282
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v3.0.0-beta.1...v3.0.0)
|
|
283
|
-
|
|
284
|
-
## [v3.0.0-beta.1](https://github.com/nextcloud/eslint-config/tree/v3.0.0-beta.1) (2020-11-03)
|
|
285
|
-
|
|
286
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v2.2.0...v3.0.0-beta.1)
|
|
252
|
+
- Bump elliptic from 6.5.3 to 6.5.4 [\#81](https://github.com/nextcloud-libraries/eslint-config/pull/81) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
253
|
+
- Bump eslint-plugin-vue from 7.6.0 to 7.7.0 [\#78](https://github.com/nextcloud-libraries/eslint-config/pull/78) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
254
|
+
- Bump eslint from 7.20.0 to 7.21.0 [\#77](https://github.com/nextcloud-libraries/eslint-config/pull/77) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
255
|
+
- Bump eslint-webpack-plugin from 2.5.1 to 2.5.2 [\#76](https://github.com/nextcloud-libraries/eslint-config/pull/76) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
256
|
+
- Bump eslint-webpack-plugin from 2.5.0 to 2.5.1 [\#75](https://github.com/nextcloud-libraries/eslint-config/pull/75) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
257
|
+
- Bump eslint-plugin-vue from 7.5.0 to 7.6.0 [\#74](https://github.com/nextcloud-libraries/eslint-config/pull/74) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
258
|
+
- Bump eslint from 7.19.0 to 7.20.0 [\#73](https://github.com/nextcloud-libraries/eslint-config/pull/73) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
259
|
+
- Bump eslint-plugin-promise from 4.2.1 to 4.3.1 [\#72](https://github.com/nextcloud-libraries/eslint-config/pull/72) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
260
|
+
- Bump eslint-webpack-plugin from 2.4.3 to 2.5.0 [\#71](https://github.com/nextcloud-libraries/eslint-config/pull/71) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
261
|
+
- Bump eslint from 7.18.0 to 7.19.0 [\#70](https://github.com/nextcloud-libraries/eslint-config/pull/70) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
262
|
+
- Bump eslint-plugin-vue from 7.4.1 to 7.5.0 [\#69](https://github.com/nextcloud-libraries/eslint-config/pull/69) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
263
|
+
- Bump eslint-webpack-plugin from 2.4.1 to 2.4.3 [\#68](https://github.com/nextcloud-libraries/eslint-config/pull/68) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
264
|
+
- Bump eslint from 7.17.0 to 7.18.0 [\#67](https://github.com/nextcloud-libraries/eslint-config/pull/67) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
265
|
+
- Bump webpack from 4.45.0 to 4.46.0 [\#66](https://github.com/nextcloud-libraries/eslint-config/pull/66) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
266
|
+
- Bump webpack from 4.44.2 to 4.45.0 [\#65](https://github.com/nextcloud-libraries/eslint-config/pull/65) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
267
|
+
- Bump eslint-plugin-vue from 7.4.0 to 7.4.1 [\#64](https://github.com/nextcloud-libraries/eslint-config/pull/64) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
268
|
+
- Bump eslint from 7.16.0 to 7.17.0 [\#63](https://github.com/nextcloud-libraries/eslint-config/pull/63) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
269
|
+
- Bump eslint-plugin-vue from 7.3.0 to 7.4.0 [\#62](https://github.com/nextcloud-libraries/eslint-config/pull/62) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
270
|
+
- Bump eslint from 7.15.0 to 7.16.0 [\#61](https://github.com/nextcloud-libraries/eslint-config/pull/61) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
271
|
+
- Bump eslint-plugin-vue from 7.2.0 to 7.3.0 [\#60](https://github.com/nextcloud-libraries/eslint-config/pull/60) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
272
|
+
- Bump eslint-plugin-vue from 7.1.0 to 7.2.0 [\#59](https://github.com/nextcloud-libraries/eslint-config/pull/59) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
273
|
+
- Bump eslint from 7.14.0 to 7.15.0 [\#58](https://github.com/nextcloud-libraries/eslint-config/pull/58) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
274
|
+
- Bump eslint-webpack-plugin from 2.4.0 to 2.4.1 [\#57](https://github.com/nextcloud-libraries/eslint-config/pull/57) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
275
|
+
- Bump eslint-webpack-plugin from 2.3.0 to 2.4.0 [\#56](https://github.com/nextcloud-libraries/eslint-config/pull/56) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
276
|
+
- Bump eslint from 7.13.0 to 7.14.0 [\#55](https://github.com/nextcloud-libraries/eslint-config/pull/55) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
277
|
+
- Bump eslint-config-standard from 16.0.1 to 16.0.2 [\#54](https://github.com/nextcloud-libraries/eslint-config/pull/54) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
278
|
+
- Bump eslint-webpack-plugin from 2.2.1 to 2.3.0 [\#53](https://github.com/nextcloud-libraries/eslint-config/pull/53) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
279
|
+
- Bump eslint-plugin-standard from 4.0.2 to 4.1.0 [\#52](https://github.com/nextcloud-libraries/eslint-config/pull/52) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
280
|
+
- Bump eslint from 7.12.1 to 7.13.0 [\#51](https://github.com/nextcloud-libraries/eslint-config/pull/51) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
281
|
+
- Bump eslint-webpack-plugin from 2.2.0 to 2.2.1 [\#50](https://github.com/nextcloud-libraries/eslint-config/pull/50) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
282
|
+
- Bump eslint-webpack-plugin from 2.1.0 to 2.2.0 [\#49](https://github.com/nextcloud-libraries/eslint-config/pull/49) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
283
|
+
|
|
284
|
+
## [v3.0.0](https://github.com/nextcloud-libraries/eslint-config/tree/v3.0.0) (2020-11-03)
|
|
285
|
+
|
|
286
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v3.0.0-beta.1...v3.0.0)
|
|
287
|
+
|
|
288
|
+
## [v3.0.0-beta.1](https://github.com/nextcloud-libraries/eslint-config/tree/v3.0.0-beta.1) (2020-11-03)
|
|
289
|
+
|
|
290
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v2.2.0...v3.0.0-beta.1)
|
|
287
291
|
|
|
288
292
|
**Security fixes:**
|
|
289
293
|
|
|
290
|
-
- \[Security\] Bump lodash from 4.17.15 to 4.17.19 [\#41](https://github.com/nextcloud/eslint-config/pull/41) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
294
|
+
- \[Security\] Bump lodash from 4.17.15 to 4.17.19 [\#41](https://github.com/nextcloud-libraries/eslint-config/pull/41) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
291
295
|
|
|
292
296
|
**Merged pull requests:**
|
|
293
297
|
|
|
294
|
-
- Feat/eslint 7 [\#48](https://github.com/nextcloud/eslint-config/pull/48) ([skjnldsv](https://github.com/skjnldsv))
|
|
295
|
-
- Bump eslint-plugin-standard from 4.0.1 to 4.0.2 [\#47](https://github.com/nextcloud/eslint-config/pull/47) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
296
|
-
- Bump @nextcloud/eslint-plugin from 1.4.0 to 1.5.0 [\#46](https://github.com/nextcloud/eslint-config/pull/46) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
297
|
-
- Bump eslint-plugin-import from 2.22.0 to 2.22.1 [\#45](https://github.com/nextcloud/eslint-config/pull/45) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
298
|
-
- Bump webpack from 4.44.1 to 4.44.2 [\#44](https://github.com/nextcloud/eslint-config/pull/44) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
299
|
-
- Bump webpack from 4.44.0 to 4.44.1 [\#43](https://github.com/nextcloud/eslint-config/pull/43) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
300
|
-
- Bump webpack from 4.43.0 to 4.44.0 [\#42](https://github.com/nextcloud/eslint-config/pull/42) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
298
|
+
- Feat/eslint 7 [\#48](https://github.com/nextcloud-libraries/eslint-config/pull/48) ([skjnldsv](https://github.com/skjnldsv))
|
|
299
|
+
- Bump eslint-plugin-standard from 4.0.1 to 4.0.2 [\#47](https://github.com/nextcloud-libraries/eslint-config/pull/47) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
300
|
+
- Bump @nextcloud/eslint-plugin from 1.4.0 to 1.5.0 [\#46](https://github.com/nextcloud-libraries/eslint-config/pull/46) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
301
|
+
- Bump eslint-plugin-import from 2.22.0 to 2.22.1 [\#45](https://github.com/nextcloud-libraries/eslint-config/pull/45) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
302
|
+
- Bump webpack from 4.44.1 to 4.44.2 [\#44](https://github.com/nextcloud-libraries/eslint-config/pull/44) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
303
|
+
- Bump webpack from 4.44.0 to 4.44.1 [\#43](https://github.com/nextcloud-libraries/eslint-config/pull/43) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
304
|
+
- Bump webpack from 4.43.0 to 4.44.0 [\#42](https://github.com/nextcloud-libraries/eslint-config/pull/42) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
301
305
|
|
|
302
|
-
## [v2.2.0](https://github.com/nextcloud/eslint-config/tree/v2.2.0) (2020-07-08)
|
|
306
|
+
## [v2.2.0](https://github.com/nextcloud-libraries/eslint-config/tree/v2.2.0) (2020-07-08)
|
|
303
307
|
|
|
304
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v2.1.0...v2.2.0)
|
|
308
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v2.1.0...v2.2.0)
|
|
305
309
|
|
|
306
|
-
## [v2.1.0](https://github.com/nextcloud/eslint-config/tree/v2.1.0) (2020-07-07)
|
|
310
|
+
## [v2.1.0](https://github.com/nextcloud-libraries/eslint-config/tree/v2.1.0) (2020-07-07)
|
|
307
311
|
|
|
308
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v2.0.0...v2.1.0)
|
|
312
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v2.0.0...v2.1.0)
|
|
309
313
|
|
|
310
314
|
**Implemented enhancements:**
|
|
311
315
|
|
|
312
|
-
- Add object-shorthand rule [\#36](https://github.com/nextcloud/eslint-config/pull/36) ([raimund-schluessler](https://github.com/raimund-schluessler))
|
|
316
|
+
- Add object-shorthand rule [\#36](https://github.com/nextcloud-libraries/eslint-config/pull/36) ([raimund-schluessler](https://github.com/raimund-schluessler))
|
|
313
317
|
|
|
314
318
|
**Merged pull requests:**
|
|
315
319
|
|
|
316
|
-
- Bump eslint-plugin-import from 2.21.2 to 2.22.0 [\#40](https://github.com/nextcloud/eslint-config/pull/40) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
317
|
-
- Bump eslint-plugin-import from 2.21.1 to 2.21.2 [\#39](https://github.com/nextcloud/eslint-config/pull/39) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
318
|
-
- Bump eslint-plugin-import from 2.21.0 to 2.21.1 [\#38](https://github.com/nextcloud/eslint-config/pull/38) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
319
|
-
- Bump eslint-plugin-import from 2.20.2 to 2.21.0 [\#37](https://github.com/nextcloud/eslint-config/pull/37) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
320
|
-
- Bump webpack from 4.42.1 to 4.43.0 [\#34](https://github.com/nextcloud/eslint-config/pull/34) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
321
|
-
- Bump @nextcloud/eslint-plugin from 1.3.0 to 1.4.0 [\#33](https://github.com/nextcloud/eslint-config/pull/33) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
322
|
-
- Bump @nextcloud/eslint-plugin from 1.2.0 to 1.3.0 [\#32](https://github.com/nextcloud/eslint-config/pull/32) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
323
|
-
- Bump @nextcloud/eslint-plugin from 1.1.0 to 1.2.0 [\#31](https://github.com/nextcloud/eslint-config/pull/31) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
324
|
-
- Bump eslint-loader from 3.0.3 to 3.0.4 [\#30](https://github.com/nextcloud/eslint-config/pull/30) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
325
|
-
- Bump eslint-plugin-import from 2.20.1 to 2.20.2 [\#29](https://github.com/nextcloud/eslint-config/pull/29) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
326
|
-
- Bump eslint-plugin-node from 11.0.0 to 11.1.0 [\#28](https://github.com/nextcloud/eslint-config/pull/28) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
320
|
+
- Bump eslint-plugin-import from 2.21.2 to 2.22.0 [\#40](https://github.com/nextcloud-libraries/eslint-config/pull/40) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
321
|
+
- Bump eslint-plugin-import from 2.21.1 to 2.21.2 [\#39](https://github.com/nextcloud-libraries/eslint-config/pull/39) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
322
|
+
- Bump eslint-plugin-import from 2.21.0 to 2.21.1 [\#38](https://github.com/nextcloud-libraries/eslint-config/pull/38) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
323
|
+
- Bump eslint-plugin-import from 2.20.2 to 2.21.0 [\#37](https://github.com/nextcloud-libraries/eslint-config/pull/37) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
324
|
+
- Bump webpack from 4.42.1 to 4.43.0 [\#34](https://github.com/nextcloud-libraries/eslint-config/pull/34) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
325
|
+
- Bump @nextcloud/eslint-plugin from 1.3.0 to 1.4.0 [\#33](https://github.com/nextcloud-libraries/eslint-config/pull/33) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
326
|
+
- Bump @nextcloud/eslint-plugin from 1.2.0 to 1.3.0 [\#32](https://github.com/nextcloud-libraries/eslint-config/pull/32) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
327
|
+
- Bump @nextcloud/eslint-plugin from 1.1.0 to 1.2.0 [\#31](https://github.com/nextcloud-libraries/eslint-config/pull/31) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
328
|
+
- Bump eslint-loader from 3.0.3 to 3.0.4 [\#30](https://github.com/nextcloud-libraries/eslint-config/pull/30) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
329
|
+
- Bump eslint-plugin-import from 2.20.1 to 2.20.2 [\#29](https://github.com/nextcloud-libraries/eslint-config/pull/29) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
330
|
+
- Bump eslint-plugin-node from 11.0.0 to 11.1.0 [\#28](https://github.com/nextcloud-libraries/eslint-config/pull/28) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
327
331
|
|
|
328
|
-
## [v2.0.0](https://github.com/nextcloud/eslint-config/tree/v2.0.0) (2020-03-25)
|
|
332
|
+
## [v2.0.0](https://github.com/nextcloud-libraries/eslint-config/tree/v2.0.0) (2020-03-25)
|
|
329
333
|
|
|
330
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v1.2.0...v2.0.0)
|
|
334
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v1.2.0...v2.0.0)
|
|
331
335
|
|
|
332
336
|
**Implemented enhancements:**
|
|
333
337
|
|
|
334
|
-
- Update eslint and eslint-plugin-vue packages [\#27](https://github.com/nextcloud/eslint-config/pull/27) ([ChristophWurst](https://github.com/ChristophWurst))
|
|
338
|
+
- Update eslint and eslint-plugin-vue packages [\#27](https://github.com/nextcloud-libraries/eslint-config/pull/27) ([ChristophWurst](https://github.com/ChristophWurst))
|
|
335
339
|
|
|
336
|
-
## [v1.2.0](https://github.com/nextcloud/eslint-config/tree/v1.2.0) (2020-03-24)
|
|
340
|
+
## [v1.2.0](https://github.com/nextcloud-libraries/eslint-config/tree/v1.2.0) (2020-03-24)
|
|
337
341
|
|
|
338
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v1.1.1...v1.2.0)
|
|
342
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v1.1.1...v1.2.0)
|
|
339
343
|
|
|
340
344
|
**Merged pull requests:**
|
|
341
345
|
|
|
342
|
-
- Allow jest [\#26](https://github.com/nextcloud/eslint-config/pull/26) ([ma12-co](https://github.com/ma12-co))
|
|
343
|
-
- Bump webpack from 4.42.0 to 4.42.1 [\#25](https://github.com/nextcloud/eslint-config/pull/25) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
346
|
+
- Allow jest [\#26](https://github.com/nextcloud-libraries/eslint-config/pull/26) ([ma12-co](https://github.com/ma12-co))
|
|
347
|
+
- Bump webpack from 4.42.0 to 4.42.1 [\#25](https://github.com/nextcloud-libraries/eslint-config/pull/25) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
344
348
|
|
|
345
|
-
## [v1.1.1](https://github.com/nextcloud/eslint-config/tree/v1.1.1) (2020-03-19)
|
|
349
|
+
## [v1.1.1](https://github.com/nextcloud-libraries/eslint-config/tree/v1.1.1) (2020-03-19)
|
|
346
350
|
|
|
347
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v1.1.0...v1.1.1)
|
|
351
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v1.1.0...v1.1.1)
|
|
348
352
|
|
|
349
353
|
**Security fixes:**
|
|
350
354
|
|
|
351
|
-
- \[Security\] Bump acorn from 6.4.0 to 6.4.1 [\#24](https://github.com/nextcloud/eslint-config/pull/24) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
355
|
+
- \[Security\] Bump acorn from 6.4.0 to 6.4.1 [\#24](https://github.com/nextcloud-libraries/eslint-config/pull/24) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
352
356
|
|
|
353
|
-
## [v1.1.0](https://github.com/nextcloud/eslint-config/tree/v1.1.0) (2020-03-03)
|
|
357
|
+
## [v1.1.0](https://github.com/nextcloud-libraries/eslint-config/tree/v1.1.0) (2020-03-03)
|
|
354
358
|
|
|
355
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v1.0.0...v1.1.0)
|
|
359
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v1.0.0...v1.1.0)
|
|
356
360
|
|
|
357
361
|
**Merged pull requests:**
|
|
358
362
|
|
|
359
|
-
- Release on github tagging [\#23](https://github.com/nextcloud/eslint-config/pull/23) ([skjnldsv](https://github.com/skjnldsv))
|
|
360
|
-
- Bump eslint-plugin-node to ^11 [\#22](https://github.com/nextcloud/eslint-config/pull/22) ([skjnldsv](https://github.com/skjnldsv))
|
|
361
|
-
- Bump webpack from 4.41.6 to 4.42.0 [\#21](https://github.com/nextcloud/eslint-config/pull/21) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
362
|
-
- Bump babel-eslint from 10.0.3 to 10.1.0 [\#20](https://github.com/nextcloud/eslint-config/pull/20) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
363
|
-
- rename to @nextcloud/eslint-config [\#19](https://github.com/nextcloud/eslint-config/pull/19) ([korelstar](https://github.com/korelstar))
|
|
363
|
+
- Release on github tagging [\#23](https://github.com/nextcloud-libraries/eslint-config/pull/23) ([skjnldsv](https://github.com/skjnldsv))
|
|
364
|
+
- Bump eslint-plugin-node to ^11 [\#22](https://github.com/nextcloud-libraries/eslint-config/pull/22) ([skjnldsv](https://github.com/skjnldsv))
|
|
365
|
+
- Bump webpack from 4.41.6 to 4.42.0 [\#21](https://github.com/nextcloud-libraries/eslint-config/pull/21) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
366
|
+
- Bump babel-eslint from 10.0.3 to 10.1.0 [\#20](https://github.com/nextcloud-libraries/eslint-config/pull/20) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
367
|
+
- rename to @nextcloud/eslint-config [\#19](https://github.com/nextcloud-libraries/eslint-config/pull/19) ([korelstar](https://github.com/korelstar))
|
|
364
368
|
|
|
365
|
-
## [v1.0.0](https://github.com/nextcloud/eslint-config/tree/v1.0.0) (2020-02-11)
|
|
369
|
+
## [v1.0.0](https://github.com/nextcloud-libraries/eslint-config/tree/v1.0.0) (2020-02-11)
|
|
366
370
|
|
|
367
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v0.1.1...v1.0.0)
|
|
371
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v0.1.1...v1.0.0)
|
|
368
372
|
|
|
369
373
|
**Merged pull requests:**
|
|
370
374
|
|
|
371
|
-
- Bump eslint-plugin-import from 2.20.0 to 2.20.1 [\#18](https://github.com/nextcloud/eslint-config/pull/18) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
372
|
-
- Bump eslint-plugin-import from 2.19.1 to 2.20.0 [\#17](https://github.com/nextcloud/eslint-config/pull/17) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
373
|
-
- Bump webpack from 4.41.4 to 4.41.5 [\#16](https://github.com/nextcloud/eslint-config/pull/16) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
374
|
-
- switch to @nextcloud/eslint-plugin [\#15](https://github.com/nextcloud/eslint-config/pull/15) ([korelstar](https://github.com/korelstar))
|
|
375
|
+
- Bump eslint-plugin-import from 2.20.0 to 2.20.1 [\#18](https://github.com/nextcloud-libraries/eslint-config/pull/18) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
376
|
+
- Bump eslint-plugin-import from 2.19.1 to 2.20.0 [\#17](https://github.com/nextcloud-libraries/eslint-config/pull/17) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
377
|
+
- Bump webpack from 4.41.4 to 4.41.5 [\#16](https://github.com/nextcloud-libraries/eslint-config/pull/16) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
378
|
+
- switch to @nextcloud/eslint-plugin [\#15](https://github.com/nextcloud-libraries/eslint-config/pull/15) ([korelstar](https://github.com/korelstar))
|
|
375
379
|
|
|
376
|
-
## [v0.1.1](https://github.com/nextcloud/eslint-config/tree/v0.1.1) (2019-12-21)
|
|
380
|
+
## [v0.1.1](https://github.com/nextcloud-libraries/eslint-config/tree/v0.1.1) (2019-12-21)
|
|
377
381
|
|
|
378
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v0.1.0...v0.1.1)
|
|
382
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v0.1.0...v0.1.1)
|
|
379
383
|
|
|
380
384
|
**Merged pull requests:**
|
|
381
385
|
|
|
382
|
-
- Allow spaces after tabs for alignment [\#14](https://github.com/nextcloud/eslint-config/pull/14) ([danxuliu](https://github.com/danxuliu))
|
|
383
|
-
- Bump webpack from 4.41.3 to 4.41.4 [\#13](https://github.com/nextcloud/eslint-config/pull/13) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
384
|
-
- Bump webpack from 4.41.2 to 4.41.3 [\#12](https://github.com/nextcloud/eslint-config/pull/12) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
385
|
-
- Bump eslint-plugin-import from 2.18.2 to 2.19.1 [\#11](https://github.com/nextcloud/eslint-config/pull/11) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
386
|
-
- Bump eslint-loader from 3.0.2 to 3.0.3 [\#10](https://github.com/nextcloud/eslint-config/pull/10) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
386
|
+
- Allow spaces after tabs for alignment [\#14](https://github.com/nextcloud-libraries/eslint-config/pull/14) ([danxuliu](https://github.com/danxuliu))
|
|
387
|
+
- Bump webpack from 4.41.3 to 4.41.4 [\#13](https://github.com/nextcloud-libraries/eslint-config/pull/13) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
388
|
+
- Bump webpack from 4.41.2 to 4.41.3 [\#12](https://github.com/nextcloud-libraries/eslint-config/pull/12) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
389
|
+
- Bump eslint-plugin-import from 2.18.2 to 2.19.1 [\#11](https://github.com/nextcloud-libraries/eslint-config/pull/11) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
390
|
+
- Bump eslint-loader from 3.0.2 to 3.0.3 [\#10](https://github.com/nextcloud-libraries/eslint-config/pull/10) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
387
391
|
|
|
388
|
-
## [v0.1.0](https://github.com/nextcloud/eslint-config/tree/v0.1.0) (2019-10-26)
|
|
392
|
+
## [v0.1.0](https://github.com/nextcloud-libraries/eslint-config/tree/v0.1.0) (2019-10-26)
|
|
389
393
|
|
|
390
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v0.0.6...v0.1.0)
|
|
394
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v0.0.6...v0.1.0)
|
|
391
395
|
|
|
392
396
|
**Merged pull requests:**
|
|
393
397
|
|
|
394
|
-
- consolidate config [\#8](https://github.com/nextcloud/eslint-config/pull/8) ([korelstar](https://github.com/korelstar))
|
|
395
|
-
- Bump webpack from 4.41.0 to 4.41.2 [\#7](https://github.com/nextcloud/eslint-config/pull/7) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
398
|
+
- consolidate config [\#8](https://github.com/nextcloud-libraries/eslint-config/pull/8) ([korelstar](https://github.com/korelstar))
|
|
399
|
+
- Bump webpack from 4.41.0 to 4.41.2 [\#7](https://github.com/nextcloud-libraries/eslint-config/pull/7) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
396
400
|
|
|
397
|
-
## [v0.0.6](https://github.com/nextcloud/eslint-config/tree/v0.0.6) (2019-10-02)
|
|
401
|
+
## [v0.0.6](https://github.com/nextcloud-libraries/eslint-config/tree/v0.0.6) (2019-10-02)
|
|
398
402
|
|
|
399
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v0.0.5...v0.0.6)
|
|
403
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v0.0.5...v0.0.6)
|
|
400
404
|
|
|
401
405
|
**Merged pull requests:**
|
|
402
406
|
|
|
403
|
-
- Bump eslint-loader from 3.0.0 to 3.0.2 [\#5](https://github.com/nextcloud/eslint-config/pull/5) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
404
|
-
- Bump webpack from 4.40.2 to 4.41.0 [\#3](https://github.com/nextcloud/eslint-config/pull/3) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
405
|
-
- remove globals [\#2](https://github.com/nextcloud/eslint-config/pull/2) ([korelstar](https://github.com/korelstar))
|
|
407
|
+
- Bump eslint-loader from 3.0.0 to 3.0.2 [\#5](https://github.com/nextcloud-libraries/eslint-config/pull/5) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
408
|
+
- Bump webpack from 4.40.2 to 4.41.0 [\#3](https://github.com/nextcloud-libraries/eslint-config/pull/3) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
|
409
|
+
- remove globals [\#2](https://github.com/nextcloud-libraries/eslint-config/pull/2) ([korelstar](https://github.com/korelstar))
|
|
406
410
|
|
|
407
|
-
## [v0.0.5](https://github.com/nextcloud/eslint-config/tree/v0.0.5) (2019-09-24)
|
|
411
|
+
## [v0.0.5](https://github.com/nextcloud-libraries/eslint-config/tree/v0.0.5) (2019-09-24)
|
|
408
412
|
|
|
409
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v0.0.4...v0.0.5)
|
|
413
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v0.0.4...v0.0.5)
|
|
410
414
|
|
|
411
|
-
## [v0.0.4](https://github.com/nextcloud/eslint-config/tree/v0.0.4) (2019-09-24)
|
|
415
|
+
## [v0.0.4](https://github.com/nextcloud-libraries/eslint-config/tree/v0.0.4) (2019-09-24)
|
|
412
416
|
|
|
413
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v0.0.3...v0.0.4)
|
|
417
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v0.0.3...v0.0.4)
|
|
414
418
|
|
|
415
|
-
## [v0.0.3](https://github.com/nextcloud/eslint-config/tree/v0.0.3) (2019-09-24)
|
|
419
|
+
## [v0.0.3](https://github.com/nextcloud-libraries/eslint-config/tree/v0.0.3) (2019-09-24)
|
|
416
420
|
|
|
417
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/v0.0.2...v0.0.3)
|
|
421
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/v0.0.2...v0.0.3)
|
|
418
422
|
|
|
419
|
-
## [v0.0.2](https://github.com/nextcloud/eslint-config/tree/v0.0.2) (2019-09-24)
|
|
423
|
+
## [v0.0.2](https://github.com/nextcloud-libraries/eslint-config/tree/v0.0.2) (2019-09-24)
|
|
420
424
|
|
|
421
|
-
[Full Changelog](https://github.com/nextcloud/eslint-config/compare/6632a4d11d27651dd75f3402a6e12b4ae21dc81b...v0.0.2)
|
|
425
|
+
[Full Changelog](https://github.com/nextcloud-libraries/eslint-config/compare/6632a4d11d27651dd75f3402a6e12b4ae21dc81b...v0.0.2)
|
|
422
426
|
|
|
423
427
|
**Implemented enhancements:**
|
|
424
428
|
|
|
425
|
-
- Create first config [\#1](https://github.com/nextcloud/eslint-config/pull/1) ([skjnldsv](https://github.com/skjnldsv))
|
|
429
|
+
- Create first config [\#1](https://github.com/nextcloud-libraries/eslint-config/pull/1) ([skjnldsv](https://github.com/skjnldsv))
|
|
426
430
|
|
|
427
431
|
|
|
428
432
|
|