@tinkoff/eslint-config 1.36.2 → 1.37.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
@@ -3,6 +3,15 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.37.0](https://github.com/TinkoffCreditSystems/linters/compare/v1.36.2...v1.37.0) (2022-10-14)
7
+
8
+
9
+ ### Features
10
+
11
+ * **eslint-config:** allow break convention for quoted names ([#207](https://github.com/TinkoffCreditSystems/linters/issues/207)) ([ffe15c4](https://github.com/TinkoffCreditSystems/linters/commit/ffe15c494bc08d401344ed3cab4fc9d6ef6d24a7))
12
+
13
+
14
+
6
15
  ### [1.36.2](https://github.com/TinkoffCreditSystems/linters/compare/v1.36.1...v1.36.2) (2022-10-13)
7
16
 
8
17
  **Note:** Version bump only for package @tinkoff/eslint-config
@@ -101,6 +101,20 @@ module.exports = {
101
101
  selector: 'property',
102
102
  format: ['camelCase', 'PascalCase'],
103
103
  },
104
+ {
105
+ selector: [
106
+ 'classProperty',
107
+ 'objectLiteralProperty',
108
+ 'typeProperty',
109
+ 'classMethod',
110
+ 'objectLiteralMethod',
111
+ 'typeMethod',
112
+ 'accessor',
113
+ 'enumMember',
114
+ ],
115
+ format: null,
116
+ modifiers: ['requiresQuotes'],
117
+ },
104
118
  ],
105
119
  '@typescript-eslint/ban-ts-comment': 'warn',
106
120
  '@typescript-eslint/no-empty-function': 'warn',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tinkoff/eslint-config",
3
- "version": "1.36.2",
3
+ "version": "1.37.0",
4
4
  "description": "Tinkoff ESLint configs to rule them all",
5
5
  "license": "Apache-2.0",
6
6
  "keywords": [
@@ -39,5 +39,5 @@
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "ce57996a56ce1ac184a8ae3d1a438100e57608c6"
42
+ "gitHead": "3a324b112d6ae0117a7fb4b5f2e6bc68ec409ac1"
43
43
  }