@jarsec/eslint-config 4.3.0 → 4.4.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,15 @@
1
1
  # @jarsec/eslint-config
2
2
 
3
+ ## 4.4.0
4
+
5
+ ### Minor Changes
6
+
7
+ - d51b6db: Add JavaScript-specific eslint configuration
8
+
9
+ ### Patch Changes
10
+
11
+ - 9772eee: Remove unused dependencies
12
+
3
13
  ## 4.3.0
4
14
 
5
15
  ### Minor Changes
package/index.js CHANGED
@@ -9,12 +9,13 @@ module.exports = {
9
9
  'plugin:@typescript-eslint/recommended',
10
10
  'plugin:@typescript-eslint/stylistic',
11
11
  'plugin:perfectionist/recommended-natural',
12
+ 'plugin:promise/recommended'
12
13
  ],
13
14
  parser: '@typescript-eslint/parser',
14
15
  parserOptions: {
15
16
  project: './tsconfig.json',
16
17
  },
17
- plugins: ['import', 'perfectionist', '@typescript-eslint/eslint-plugin'],
18
+ plugins: ['import', 'perfectionist', '@typescript-eslint/eslint-plugin', 'promise'],
18
19
  settings: {
19
20
  'import/resolver': {
20
21
  node: true,
package/javascript.js ADDED
@@ -0,0 +1,22 @@
1
+ require('@rushstack/eslint-patch/modern-module-resolution')
2
+
3
+ module.exports = {
4
+ env: {
5
+ node: true
6
+ },
7
+ extends: [
8
+ 'eslint:recommended',
9
+ 'plugin:perfectionist/recommended-natural',
10
+ 'plugin:promise/recommended'
11
+ ],
12
+ plugins: [
13
+ 'import',
14
+ 'perfectionist',
15
+ 'promise'
16
+ ],
17
+ settings: {
18
+ 'import/resolver': {
19
+ node: true,
20
+ }
21
+ }
22
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jarsec/eslint-config",
3
- "version": "4.3.0",
3
+ "version": "4.4.0",
4
4
  "description": "jsec's eslint configurations",
5
5
  "author": "Jarrod Seccombe <jarrod.seccombe@icloud.com>",
6
6
  "main": "index.js",
@@ -15,7 +15,6 @@
15
15
  "@typescript-eslint/parser": "^6.16.0",
16
16
  "eslint": "^8.56.0",
17
17
  "eslint-config-prettier": "^9.1.0",
18
- "eslint-config-standard-with-typescript": "^40.0.0",
19
18
  "eslint-plugin-import": "^2.29.1",
20
19
  "eslint-plugin-n": "^16.5.0",
21
20
  "eslint-plugin-perfectionist": "^2.5.0",