@rebeccastevens/eslint-config 1.6.2 → 1.6.4

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.
@@ -7,7 +7,7 @@ const testFiles = ["{test,tests}/**/*", "**/*.{spec,test}.*"];
7
7
  var commonOverrides = {
8
8
  overrides: [
9
9
  {
10
- files: ["*"],
10
+ files: ["./*"],
11
11
  extends: ["@rebeccastevens/eslint-config/script"],
12
12
  rules: {
13
13
  "functional/functional-parameters": "off",
@@ -5,7 +5,7 @@ const testFiles = ["{test,tests}/**/*", "**/*.{spec,test}.*"];
5
5
  var commonOverrides = {
6
6
  overrides: [
7
7
  {
8
- files: ["*"],
8
+ files: ["./*"],
9
9
  extends: ["@rebeccastevens/eslint-config/script"],
10
10
  rules: {
11
11
  "functional/functional-parameters": "off",
package/dist/modern.cjs CHANGED
@@ -1162,6 +1162,7 @@ const settings = {
1162
1162
  styles: {
1163
1163
  typescript: {
1164
1164
  default: true,
1165
+ named: true,
1165
1166
  },
1166
1167
  },
1167
1168
  },
package/dist/modern.mjs CHANGED
@@ -1160,6 +1160,7 @@ const settings = {
1160
1160
  styles: {
1161
1161
  typescript: {
1162
1162
  default: true,
1163
+ named: true,
1163
1164
  },
1164
1165
  },
1165
1166
  },
package/dist/test.cjs CHANGED
@@ -3,13 +3,28 @@
3
3
  const baseConfig = {
4
4
  extends: ["@rebeccastevens/eslint-config/script"],
5
5
  rules: {
6
+ "@typescript-eslint/no-empty-function": "off",
7
+ "@typescript-eslint/no-unsafe-argument": "off",
8
+ "@typescript-eslint/no-unsafe-assignment": "off",
9
+ "@typescript-eslint/no-unsafe-call": "off",
10
+ "@typescript-eslint/no-unsafe-member-access": "off",
11
+ "@typescript-eslint/no-unsafe-return": "off",
12
+ "@typescript-eslint/restrict-template-expressions": "off",
13
+ "eslint-comments/disable-enable-pair": "off",
6
14
  "functional/functional-parameters": "off",
7
15
  "functional/immutable-data": "warn",
16
+ "functional/no-classes": "off",
8
17
  "functional/no-conditional-statements": "warn",
9
18
  "functional/no-expression-statements": "off",
10
19
  "functional/no-loop-statements": "warn",
11
20
  "functional/no-throw-statements": "off",
21
+ "jsdoc/require-jsdoc": "off",
22
+ "lines-between-class-members": "off",
23
+ "max-classes-per-file": "off",
12
24
  "node/no-sync": "off",
25
+ "sonarjs/no-duplicate-string": "off",
26
+ "sonarjs/no-identical-functions": "off",
27
+ "unicorn/consistent-function-scoping": "off",
13
28
  },
14
29
  };
15
30
 
package/dist/test.mjs CHANGED
@@ -1,13 +1,28 @@
1
1
  const baseConfig = {
2
2
  extends: ["@rebeccastevens/eslint-config/script"],
3
3
  rules: {
4
+ "@typescript-eslint/no-empty-function": "off",
5
+ "@typescript-eslint/no-unsafe-argument": "off",
6
+ "@typescript-eslint/no-unsafe-assignment": "off",
7
+ "@typescript-eslint/no-unsafe-call": "off",
8
+ "@typescript-eslint/no-unsafe-member-access": "off",
9
+ "@typescript-eslint/no-unsafe-return": "off",
10
+ "@typescript-eslint/restrict-template-expressions": "off",
11
+ "eslint-comments/disable-enable-pair": "off",
4
12
  "functional/functional-parameters": "off",
5
13
  "functional/immutable-data": "warn",
14
+ "functional/no-classes": "off",
6
15
  "functional/no-conditional-statements": "warn",
7
16
  "functional/no-expression-statements": "off",
8
17
  "functional/no-loop-statements": "warn",
9
18
  "functional/no-throw-statements": "off",
19
+ "jsdoc/require-jsdoc": "off",
20
+ "lines-between-class-members": "off",
21
+ "max-classes-per-file": "off",
10
22
  "node/no-sync": "off",
23
+ "sonarjs/no-duplicate-string": "off",
24
+ "sonarjs/no-identical-functions": "off",
25
+ "unicorn/consistent-function-scoping": "off",
11
26
  },
12
27
  };
13
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rebeccastevens/eslint-config",
3
- "version": "1.6.2",
3
+ "version": "1.6.4",
4
4
  "description": "My ESLint shareable config.",
5
5
  "keywords": [
6
6
  "eslint config"
@@ -64,7 +64,7 @@
64
64
  "type-check": "tsc --noEmit"
65
65
  },
66
66
  "dependencies": {
67
- "deepmerge-ts": "^4.3.0"
67
+ "deepmerge-ts": "^5.0.0"
68
68
  },
69
69
  "devDependencies": {
70
70
  "@commitlint/cli": "17.4.4",