@shlinkio/eslint-config-js-coding-standard 2.0.1 → 2.0.2
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/{index.js → dist/index.js} +0 -0
- package/package.json +9 -3
- package/CHANGELOG.md +0 -124
- package/docker-compose.override.yml.dist +0 -9
- package/docker-compose.yml +0 -8
- package/indocker +0 -3
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shlinkio/eslint-config-js-coding-standard",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Coding standard used by shlink JavaScript projects",
|
|
5
|
-
"main": "index.js",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git+https://github.com/shlinkio/js-coding-standard.git"
|
|
@@ -19,6 +19,9 @@
|
|
|
19
19
|
"url": "https://github.com/shlinkio/js-coding-standard/issues"
|
|
20
20
|
},
|
|
21
21
|
"homepage": "https://github.com/shlinkio/js-coding-standard",
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "mkdir -p dist && rm -rf dist/* && cp index.js dist"
|
|
24
|
+
},
|
|
22
25
|
"dependencies": {
|
|
23
26
|
"@typescript-eslint/eslint-plugin": "^5.16.0",
|
|
24
27
|
"@typescript-eslint/parser": "^5.16.0",
|
|
@@ -31,5 +34,8 @@
|
|
|
31
34
|
"devDependencies": {
|
|
32
35
|
"eslint": "^8.12.0",
|
|
33
36
|
"typescript": "^4.6.3"
|
|
34
|
-
}
|
|
37
|
+
},
|
|
38
|
+
"files": [
|
|
39
|
+
"dist"
|
|
40
|
+
]
|
|
35
41
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,124 +0,0 @@
|
|
|
1
|
-
# CHANGELOG
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
|
|
5
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org).
|
|
6
|
-
|
|
7
|
-
## [2.0.1] - 2022.03-26
|
|
8
|
-
#### Added
|
|
9
|
-
* *Nothing*
|
|
10
|
-
|
|
11
|
-
#### Changed
|
|
12
|
-
* *Nothing*
|
|
13
|
-
|
|
14
|
-
#### Deprecated
|
|
15
|
-
* *Nothing*
|
|
16
|
-
|
|
17
|
-
#### Removed
|
|
18
|
-
* *Nothing*
|
|
19
|
-
|
|
20
|
-
#### Fixed
|
|
21
|
-
* Ensured overrides apply to spec files, not only test ones
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
## [2.0.0] - 2022.03-26
|
|
25
|
-
#### Added
|
|
26
|
-
* Updated to airbnb coding standard
|
|
27
|
-
|
|
28
|
-
#### Changed
|
|
29
|
-
* *Nothing*
|
|
30
|
-
|
|
31
|
-
#### Deprecated
|
|
32
|
-
* *Nothing*
|
|
33
|
-
|
|
34
|
-
#### Removed
|
|
35
|
-
* *Nothing*
|
|
36
|
-
|
|
37
|
-
#### Fixed
|
|
38
|
-
* *Nothing*
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
## [1.2.2] - 2021-03-05
|
|
42
|
-
#### Added
|
|
43
|
-
* *Nothing*
|
|
44
|
-
|
|
45
|
-
#### Changed
|
|
46
|
-
* *Nothing*
|
|
47
|
-
|
|
48
|
-
#### Deprecated
|
|
49
|
-
* *Nothing*
|
|
50
|
-
|
|
51
|
-
#### Removed
|
|
52
|
-
* *Nothing*
|
|
53
|
-
|
|
54
|
-
#### Fixed
|
|
55
|
-
* Disabled some rules.
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
## [1.2.1] - 2021-02-28
|
|
59
|
-
#### Added
|
|
60
|
-
* *Nothing*
|
|
61
|
-
|
|
62
|
-
#### Changed
|
|
63
|
-
* *Nothing*
|
|
64
|
-
|
|
65
|
-
#### Deprecated
|
|
66
|
-
* *Nothing*
|
|
67
|
-
|
|
68
|
-
#### Removed
|
|
69
|
-
* *Nothing*
|
|
70
|
-
|
|
71
|
-
#### Fixed
|
|
72
|
-
* Added missing dependency on `eslint-plugin-node`.
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
## [1.2.0] - 2021-02-28
|
|
76
|
-
#### Added
|
|
77
|
-
* Updated dependencies
|
|
78
|
-
* Added new rules
|
|
79
|
-
|
|
80
|
-
#### Changed
|
|
81
|
-
* *Nothing*
|
|
82
|
-
|
|
83
|
-
#### Deprecated
|
|
84
|
-
* *Nothing*
|
|
85
|
-
|
|
86
|
-
#### Removed
|
|
87
|
-
* *Nothing*
|
|
88
|
-
|
|
89
|
-
#### Fixed
|
|
90
|
-
* *Nothing*
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
## [1.0.1] - 2019-09-02
|
|
94
|
-
#### Added
|
|
95
|
-
* *Nothing*
|
|
96
|
-
|
|
97
|
-
#### Changed
|
|
98
|
-
* *Nothing*
|
|
99
|
-
|
|
100
|
-
#### Deprecated
|
|
101
|
-
* *Nothing*
|
|
102
|
-
|
|
103
|
-
#### Removed
|
|
104
|
-
* *Nothing*
|
|
105
|
-
|
|
106
|
-
#### Fixed
|
|
107
|
-
* Added missing rule
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
## [1.0.0] - 2019-09-02
|
|
111
|
-
#### Added
|
|
112
|
-
* First release
|
|
113
|
-
|
|
114
|
-
#### Changed
|
|
115
|
-
* *Nothing*
|
|
116
|
-
|
|
117
|
-
#### Deprecated
|
|
118
|
-
* *Nothing*
|
|
119
|
-
|
|
120
|
-
#### Removed
|
|
121
|
-
* *Nothing*
|
|
122
|
-
|
|
123
|
-
#### Fixed
|
|
124
|
-
* *Nothing*
|
package/docker-compose.yml
DELETED
package/indocker
DELETED