@toptal/davinci-syntax 11.1.5-alpha-gha-create-command-tool-typecheck.13 → 11.1.6-alpha-SPT-2337-allow-custom-memory-limit.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 +11 -0
- package/package.json +4 -4
- package/src/configs/.stylelintrc +10 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 11.1.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1140](https://github.com/toptal/davinci/pull/1140) [`89aee731`](https://github.com/toptal/davinci/commit/89aee7319e6a74e553b4c6644aab246b19e916f0) Thanks [@tiagoporto](https://github.com/tiagoporto)! - Set override rules in stylelint that enable using styles checks in `tsx` and `jsx` files
|
|
8
|
+
|
|
9
|
+
The follow rules are disabled only for `tsx` and `jsx`.
|
|
10
|
+
|
|
11
|
+
- function-name-case
|
|
12
|
+
- value-keyword-case
|
|
13
|
+
|
|
3
14
|
## 11.1.4
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toptal/davinci-syntax",
|
|
3
|
-
"version": "11.1.
|
|
3
|
+
"version": "11.1.6-alpha-SPT-2337-allow-custom-memory-limit.1+07c672ea",
|
|
4
4
|
"description": "Lint and prettier support",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@stylelint/postcss-css-in-js": "^0.37.2",
|
|
34
|
-
"@toptal/davinci-cli-shared": "1.5.1-alpha-
|
|
35
|
-
"@toptal/eslint-plugin-davinci": "4.1.1-alpha-
|
|
34
|
+
"@toptal/davinci-cli-shared": "1.5.1-alpha-SPT-2337-allow-custom-memory-limit.74+07c672ea",
|
|
35
|
+
"@toptal/eslint-plugin-davinci": "4.1.1-alpha-SPT-2337-allow-custom-memory-limit.15+07c672ea",
|
|
36
36
|
"@typescript-eslint/eslint-plugin": "^4.17.0",
|
|
37
37
|
"@typescript-eslint/parser": "^4.28.3",
|
|
38
38
|
"eslint": "^7.29.0",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"prettier"
|
|
80
80
|
]
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "07c672ea2ea2319869c7e0e469dd3fc22576b313"
|
|
83
83
|
}
|
package/src/configs/.stylelintrc
CHANGED