@toptal/davinci-syntax 23.0.1 → 23.1.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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # Change Log
2
2
 
3
+ ## 23.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#2466](https://github.com/toptal/davinci/pull/2466) [`5b4ecc6d`](https://github.com/toptal/davinci/commit/5b4ecc6d94cbe77405ed442ef7b38af395a13e8b) Thanks [@ertrzyiks](https://github.com/ertrzyiks)!
8
+ - disable no-inline-styles rule for cypress and storybook
9
+
3
10
  ## 23.0.1
4
11
 
5
12
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/davinci-syntax",
3
- "version": "23.0.1",
3
+ "version": "23.1.0",
4
4
  "keywords": [
5
5
  "lint"
6
6
  ],
@@ -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: {