@toptal/davinci-syntax 23.0.1 → 23.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 +14 -0
- package/package.json +2 -2
- package/src/configs/.eslintrc.cjs +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 23.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2471](https://github.com/toptal/davinci/pull/2471) [`194ed8de`](https://github.com/toptal/davinci/commit/194ed8de2b2b9207a5aaf56756cdb0ad20dbf36f) Thanks [@sashuk](https://github.com/sashuk)!
|
|
8
|
+
- update dependencies to fix micromatch vulnerability
|
|
9
|
+
|
|
10
|
+
## 23.1.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- [#2466](https://github.com/toptal/davinci/pull/2466) [`5b4ecc6d`](https://github.com/toptal/davinci/commit/5b4ecc6d94cbe77405ed442ef7b38af395a13e8b) Thanks [@ertrzyiks](https://github.com/ertrzyiks)!
|
|
15
|
+
- disable no-inline-styles rule for cypress and storybook
|
|
16
|
+
|
|
3
17
|
## 23.0.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@toptal/davinci-syntax",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.1.1",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"lint"
|
|
6
6
|
],
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"eslint-plugin-todo-plz": "^1.3.0",
|
|
55
55
|
"eslint-plugin-unused-imports": "3.0.0",
|
|
56
56
|
"husky": "^8.0.2",
|
|
57
|
-
"lint-staged": "^15.2.
|
|
57
|
+
"lint-staged": "^15.2.9",
|
|
58
58
|
"postcss-syntax": "^0.36.2",
|
|
59
59
|
"prettier": "^2.6.2",
|
|
60
60
|
"prettier-config-standard": "^5.0.0",
|
|
@@ -407,6 +407,7 @@ module.exports = {
|
|
|
407
407
|
'jest/no-focused-tests': 'error',
|
|
408
408
|
'promise/always-return': 'off',
|
|
409
409
|
'promise/catch-or-return': 'off',
|
|
410
|
+
'no-inline-styles/no-inline-styles': 'off',
|
|
410
411
|
},
|
|
411
412
|
},
|
|
412
413
|
// Jest based test files
|
|
@@ -415,6 +416,13 @@ module.exports = {
|
|
|
415
416
|
files: ['**/test.*', '**/*.test.*', '**/*.pact.*'],
|
|
416
417
|
excludedFiles: ['**/test.*.snap', '**/*test.*.snap'],
|
|
417
418
|
},
|
|
419
|
+
// Storybook files
|
|
420
|
+
{
|
|
421
|
+
files: ['**/*.stories.tsx', '**/*.stories.jsx'],
|
|
422
|
+
rules: {
|
|
423
|
+
'no-inline-styles/no-inline-styles': 'off',
|
|
424
|
+
},
|
|
425
|
+
},
|
|
418
426
|
{
|
|
419
427
|
files: "['**/*.ts', '**/*.tsx', '**/*.js', '**/*.jsx']",
|
|
420
428
|
rules: {
|