@toptal/davinci-syntax 13.1.2 → 13.2.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,17 @@
1
1
  # Change Log
2
2
 
3
+ ## 13.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1291](https://github.com/toptal/davinci/pull/1291) [`470dfea4`](https://github.com/toptal/davinci/commit/470dfea4b7c873974747faa4dcce7d4c81fdc558) Thanks [@MrBra1nwash](https://github.com/MrBra1nwash)! - Add an eslint rule `@toptal/davinci/no-package-self-imports` to prevent
8
+ packages from importing themselves using absolute paths.
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies [[`470dfea4`](https://github.com/toptal/davinci/commit/470dfea4b7c873974747faa4dcce7d4c81fdc558)]:
13
+ - @toptal/eslint-plugin-davinci@5.1.0
14
+
3
15
  ## 13.1.2
4
16
 
5
17
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/davinci-syntax",
3
- "version": "13.1.2",
3
+ "version": "13.2.0",
4
4
  "description": "Lint and prettier support",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -33,7 +33,7 @@
33
33
  "@stylelint/postcss-css-in-js": "^0.37.2",
34
34
  "@toptal/davinci-cli-shared": "1.5.1",
35
35
  "@toptal/davinci-dir-lint": "^0.1.0",
36
- "@toptal/eslint-plugin-davinci": "5.0.1",
36
+ "@toptal/eslint-plugin-davinci": "5.1.0",
37
37
  "@typescript-eslint/eslint-plugin": "^5.19.0",
38
38
  "@typescript-eslint/parser": "^5.19.0",
39
39
  "eslint": "^8.13.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toptal/davinci-syntax",
3
- "version": "13.1.2",
3
+ "version": "13.2.0",
4
4
  "description": "Lint and prettier support",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -33,7 +33,7 @@
33
33
  "@stylelint/postcss-css-in-js": "^0.37.2",
34
34
  "@toptal/davinci-cli-shared": "1.5.1",
35
35
  "@toptal/davinci-dir-lint": "^0.1.0",
36
- "@toptal/eslint-plugin-davinci": "5.0.1",
36
+ "@toptal/eslint-plugin-davinci": "5.1.0",
37
37
  "@typescript-eslint/eslint-plugin": "^5.19.0",
38
38
  "@typescript-eslint/parser": "^5.19.0",
39
39
  "eslint": "^8.13.0",
@@ -292,6 +292,9 @@ exports[`eslint config verifies eslint rules are not updated silently 1`] = `
292
292
  },
293
293
  },
294
294
  ],
295
+ '@toptal/davinci/no-package-self-imports': [
296
+ 'error',
297
+ ],
295
298
  '@toptal/davinci/no-inline-css': [
296
299
  'error',
297
300
  ],
@@ -244,6 +244,7 @@
244
244
  }
245
245
  ],
246
246
  // davinci
247
+ "@toptal/davinci/no-package-self-imports": "error",
247
248
  "@toptal/davinci/no-inline-css": "error",
248
249
  "@toptal/davinci/no-private-package-imports": "error",
249
250
  // TODO: https://toptal-core.atlassian.net/browse/FX-2259 (due on the 20th of January)