@alexlit/config-eslint 81.1.2 → 81.1.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.
package/index.js CHANGED
@@ -1,5 +1,4 @@
1
- // @ts-check
2
- /* eslint-disable sonarjs/no-duplicate-string, import/order */
1
+ /* eslint-disable sonarjs/no-duplicate-string, import/order, no-undef */
3
2
 
4
3
  const { defineConfig } = require('eslint-define-config');
5
4
  const { extendSpellChecker } = require('./utils/extend-spell-checker');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alexlit/config-eslint",
3
- "version": "81.1.2",
3
+ "version": "81.1.4",
4
4
  "private": false,
5
5
  "description": "Eslint config",
6
6
  "keywords": [
package/plugins/import.js CHANGED
@@ -1,3 +1,4 @@
1
+ /* eslint-disable no-undef */
1
2
  module.exports = {
2
3
  extends: [
3
4
  'plugin:import/errors',
@@ -60,7 +61,7 @@ module.exports = {
60
61
  // Nuxt
61
62
  { group: 'internal', pattern: '#**', position: 'after' },
62
63
  // Structure
63
- { group: 'internal', pattern: '{@,~}/**', position: 'after' },esl
64
+ { group: 'internal', pattern: '{@,~}/**', position: 'after' },
64
65
  // FSD
65
66
  {
66
67
  group: 'internal',