@juuso.piikkila/eslint-config-typescript 3.0.1 → 3.0.2
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,3 +1,9 @@
|
|
|
1
|
+
## [3.0.2](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.1...3.0.2) (2025-03-09)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
* try updating plugins ([246c174](https://github.com/juusopiikkila/eslint-config-typescript/commit/246c17420b725e0debe79ed6a538dde5c414b052))
|
|
6
|
+
|
|
1
7
|
## [3.0.1](https://github.com/juusopiikkila/eslint-config-typescript/compare/3.0.0...3.0.1) (2025-03-06)
|
|
2
8
|
|
|
3
9
|
### Bug Fixes
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* eslint-disable import/no-extraneous-dependencies */
|
|
1
2
|
const canonical = require('eslint-config-canonical/configurations/canonical');
|
|
2
3
|
const regexp = require('eslint-config-canonical/configurations/regexp');
|
|
3
4
|
|
|
@@ -6,8 +7,15 @@ module.exports = [
|
|
|
6
7
|
regexp.recommended,
|
|
7
8
|
{
|
|
8
9
|
files: [
|
|
9
|
-
'**/*.{
|
|
10
|
+
'**/*.{js,jsx,cjs,mjs,ts,tsx,vue}',
|
|
10
11
|
],
|
|
12
|
+
plugins: {
|
|
13
|
+
'@stylistic': require('@stylistic/eslint-plugin'),
|
|
14
|
+
canonical: require('eslint-plugin-canonical'),
|
|
15
|
+
import: require('eslint-plugin-import'),
|
|
16
|
+
perfectionist: require('eslint-plugin-perfectionist'),
|
|
17
|
+
unicorn: require('eslint-plugin-unicorn'),
|
|
18
|
+
},
|
|
11
19
|
rules: {
|
|
12
20
|
'@stylistic/array-bracket-newline': [
|
|
13
21
|
2,
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* eslint-disable import/no-extraneous-dependencies */
|
|
1
2
|
const typescript = require('eslint-config-canonical/configurations/typescript');
|
|
2
3
|
const typescriptTypeChecking = require('eslint-config-canonical/configurations/typescript-type-checking');
|
|
3
4
|
|
|
@@ -6,9 +7,10 @@ module.exports = [
|
|
|
6
7
|
typescriptTypeChecking.recommended,
|
|
7
8
|
{
|
|
8
9
|
files: [
|
|
9
|
-
'**/*.{
|
|
10
|
+
'**/*.{js,jsx,cjs,mjs,ts,tsx,vue}',
|
|
10
11
|
],
|
|
11
12
|
plugins: {
|
|
13
|
+
'@stylistic': require('@stylistic/eslint-plugin'),
|
|
12
14
|
'@typescript-eslint': require('@typescript-eslint/eslint-plugin'),
|
|
13
15
|
},
|
|
14
16
|
rules: {
|