@mikey-pro/eslint-config 8.0.6 → 8.0.7
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/index.js +2 -2
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -7,7 +7,6 @@ import disableAutofix from 'eslint-plugin-disable-autofix';
|
|
|
7
7
|
import importPlugin from 'eslint-plugin-import';
|
|
8
8
|
import onlyWarn from 'eslint-plugin-only-warn';
|
|
9
9
|
import prettier from 'eslint-plugin-prettier';
|
|
10
|
-
import prettierRecommended from 'eslint-plugin-prettier/config/recommended';
|
|
11
10
|
import unicorn from 'eslint-plugin-unicorn';
|
|
12
11
|
import globals from 'globals';
|
|
13
12
|
import securityPlugin from 'eslint-plugin-security';
|
|
@@ -91,7 +90,8 @@ const config = [
|
|
|
91
90
|
...compatPlugin.configs.recommended.rules,
|
|
92
91
|
...cssModules.configs.recommended.rules,
|
|
93
92
|
...importPlugin.configs.recommended.rules,
|
|
94
|
-
|
|
93
|
+
'prettier/prettier': 'warn',
|
|
94
|
+
|
|
95
95
|
// Security
|
|
96
96
|
'security/detect-object-injection': 'warn',
|
|
97
97
|
'security/detect-possible-timing-attacks': 'warn',
|