@soleil-se/eslint-config 1.0.0 → 1.1.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/CHANGELOG.md +32 -28
- package/LICENSE.md +1 -1
- package/README.md +366 -365
- package/client.js +44 -37
- package/global.js +124 -114
- package/package.json +1 -1
- package/publish/index.js +23 -23
- package/server-es6.js +43 -40
- package/server.js +53 -53
- package/vue.js +42 -36
package/CHANGELOG.md
CHANGED
|
@@ -1,28 +1,32 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
Alla förändringar i detta repository antecknas här.
|
|
3
|
-
|
|
4
|
-
Formatet baseras på [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
|
-
och projektet använder [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
-
|
|
7
|
-
## [1.
|
|
8
|
-
### Ändrat
|
|
9
|
-
-
|
|
10
|
-
|
|
11
|
-
## [0.
|
|
12
|
-
### Ändrat
|
|
13
|
-
-
|
|
14
|
-
|
|
15
|
-
## [0.3.
|
|
16
|
-
###
|
|
17
|
-
-
|
|
18
|
-
|
|
19
|
-
## [0.3.
|
|
20
|
-
###
|
|
21
|
-
-
|
|
22
|
-
|
|
23
|
-
## [0.3.
|
|
24
|
-
###
|
|
25
|
-
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
1
|
+
# Changelog
|
|
2
|
+
Alla förändringar i detta repository antecknas här.
|
|
3
|
+
|
|
4
|
+
Formatet baseras på [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
5
|
+
och projektet använder [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
+
|
|
7
|
+
## [1.1.0] - 2020-01-21
|
|
8
|
+
### Ändrat
|
|
9
|
+
- Ändrat regeln `import/extensions` så den ignorerar paket, löser problem med import via alias.
|
|
10
|
+
|
|
11
|
+
## [1.0.0] - 2020-01-13
|
|
12
|
+
### Ändrat
|
|
13
|
+
- Uppdaterat till ESLint 6.
|
|
14
|
+
|
|
15
|
+
## [0.3.3] - 2019-12-06
|
|
16
|
+
### Ändrat
|
|
17
|
+
- Det får nu vara max 3 attribut per rad i Vue (`vue/max-attributes-per-line`).
|
|
18
|
+
|
|
19
|
+
## [0.3.2] - 2019-06-03
|
|
20
|
+
### Fixat
|
|
21
|
+
- Lagt till `server_src/api` i server på den globala configen.
|
|
22
|
+
|
|
23
|
+
## [0.3.1] - 2019-05-20
|
|
24
|
+
### Ändrat
|
|
25
|
+
- Slagit av `global-require` för att kunna skriva `require` innanför IIFE i `src/index.js` i en WebApp.
|
|
26
|
+
|
|
27
|
+
## [0.3.0] - 2019-05-20
|
|
28
|
+
### Nytt
|
|
29
|
+
- Lagt till en global config som kan användas i roten av ett projekt som använder standardstrukturen och `@soleil/sv-gulp-build@^3.0.0`.
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
package/LICENSE.md
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
(c) Copyright 2020 Soleil AB, all rights reserved.
|
|
1
|
+
(c) Copyright 2020 Soleil AB, all rights reserved.
|