@mikey-pro/eslint-config 3.3.1 → 3.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.
Files changed (3) hide show
  1. package/LICENSE +1 -1
  2. package/index.js +2 -2
  3. package/package.json +5 -6
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2021 Mikl Wolfe
3
+ Copyright (c) 2022 Mikl Wolfe
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/index.js CHANGED
@@ -3,7 +3,6 @@ module.exports = {
3
3
  'standard',
4
4
  'eslint:recommended',
5
5
  'plugin:unicorn/all',
6
- 'plugin:github/recommended',
7
6
  'plugin:jsx-a11y/recommended',
8
7
  'plugin:sonarjs/recommended',
9
8
  'plugin:compat/recommended',
@@ -34,6 +33,7 @@ module.exports = {
34
33
  'import/namespace': 0,
35
34
  'import/default': 0,
36
35
  'import/no-named-as-default-member': 0,
36
+ 'import/no-unresolved': 0,
37
37
  '@typescript-eslint/indent': 0,
38
38
  '@typescript-eslint/naming-convention': 0,
39
39
  'prettier/prettier': [2, { parser: 'typescript' }],
@@ -64,6 +64,7 @@ module.exports = {
64
64
  'import/namespace': 0,
65
65
  'import/default': 0,
66
66
  'import/no-named-as-default-member': 0,
67
+ 'import/no-unresolved': 0,
67
68
  '@typescript-eslint/naming-convention': 0,
68
69
  '@typescript-eslint/indent': 0,
69
70
  'react/state-in-constructor': 0,
@@ -480,7 +481,6 @@ module.exports = {
480
481
  '@babel',
481
482
  'unicorn',
482
483
  'sonarjs',
483
- 'github',
484
484
  ],
485
485
  ignorePatterns: [
486
486
  '!.*',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikey-pro/eslint-config",
3
- "version": "3.3.1",
3
+ "version": "3.4.0",
4
4
  "description": "Mikey Pro ESLint configuration",
5
5
  "main": "index.js",
6
6
  "dependencies": {
@@ -11,8 +11,8 @@
11
11
  "@babel/preset-env": "^7.16",
12
12
  "@html-eslint/eslint-plugin": "^0.13.0",
13
13
  "@html-eslint/parser": "^0.13.0",
14
- "@typescript-eslint/eslint-plugin": "^5.8.1",
15
- "@typescript-eslint/parser": "^5.8.1",
14
+ "@typescript-eslint/eslint-plugin": "^5.9.1",
15
+ "@typescript-eslint/parser": "^5.9.1",
16
16
  "@vue/babel-plugin-jsx": "^1.1.1",
17
17
  "eslint-config-prettier": "^8.3",
18
18
  "eslint-config-standard": "^16.0.3",
@@ -20,7 +20,6 @@
20
20
  "eslint-plugin-compat": "^4.0",
21
21
  "eslint-plugin-css-modules": "^2.11",
22
22
  "eslint-plugin-disable-autofix": "^0.1.6",
23
- "eslint-plugin-github": "^4.3.5",
24
23
  "eslint-plugin-import": "^2.25",
25
24
  "eslint-plugin-json-format": "^2.0",
26
25
  "eslint-plugin-jsonc": "^2.0.0",
@@ -32,10 +31,10 @@
32
31
  "eslint-plugin-react": "^7.28",
33
32
  "eslint-plugin-react-hooks": "^4.3",
34
33
  "eslint-plugin-sonarjs": "^0.11.0",
35
- "eslint-plugin-svelte3": "^3.2.1",
34
+ "eslint-plugin-svelte3": "^3.3.0",
36
35
  "eslint-plugin-toml": "^0.3.0",
37
36
  "eslint-plugin-unicorn": "^40.0.0",
38
- "eslint-plugin-vue": "^8.2",
37
+ "eslint-plugin-vue": "^8.3",
39
38
  "eslint-plugin-yaml": "^0.5.0",
40
39
  "vue-eslint-parser": "^8.0"
41
40
  },