eslint-config-azuriru 3.3.0 → 3.3.1

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 (2) hide show
  1. package/index.js +3 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -52,7 +52,9 @@ export default defineConfig(
52
52
  // Let's see if this gets annoying fast
53
53
  'import/no-named-as-default-member': 'warn',
54
54
 
55
- 'import/no-unused-modules': ['warn', {
55
+ // This shit is actually plagued with issues lol
56
+ // https://github.com/import-js/eslint-plugin-import/issues?q=is%3Aissue%20state%3Aopen%20no-unused-modules.md
57
+ 'import/no-unused-modules': ['off', {
56
58
  missingExports: true,
57
59
  unusedExports: false, // Hey, we'll find a use for them
58
60
  ignoreUnusedTypeExports: false,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "eslint-config-azuriru",
3
3
  "description": "My personal INCREDIBLY OPINIONATED configs for anything ESlint.",
4
- "version": "3.3.0",
4
+ "version": "3.3.1",
5
5
  "main": "index.js",
6
6
  "eslintConfig": {
7
7
  "env": {