Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
strmer15 committed Mar 8, 2024
1 parent beed235 commit ac13f8a
Show file tree
Hide file tree
Showing 38 changed files with 115 additions and 115 deletions.
2 changes: 1 addition & 1 deletion packages/scope-manager/src/lib/es2015.generator.ts
Expand Up @@ -4,8 +4,8 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { es2015_iterable } from './es2015.iterable';
import { TYPE } from './base-config';
import { es2015_iterable } from './es2015.iterable';

export const es2015_generator = {
...es2015_iterable,
Expand Down
2 changes: 1 addition & 1 deletion packages/scope-manager/src/lib/es2015.iterable.ts
Expand Up @@ -4,8 +4,8 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { es2015_symbol } from './es2015.symbol';
import { TYPE } from './base-config';
import { es2015_symbol } from './es2015.symbol';

export const es2015_iterable = {
...es2015_symbol,
Expand Down
2 changes: 1 addition & 1 deletion packages/scope-manager/src/lib/es2015.symbol.wellknown.ts
Expand Up @@ -4,8 +4,8 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { es2015_symbol } from './es2015.symbol';
import { TYPE } from './base-config';
import { es2015_symbol } from './es2015.symbol';

export const es2015_symbol_wellknown = {
...es2015_symbol,
Expand Down
4 changes: 2 additions & 2 deletions packages/scope-manager/src/lib/es2015.ts
Expand Up @@ -5,10 +5,10 @@

import type { ImplicitLibVariableOptions } from '../variable';
import { es5 } from './es5';
import { es2015_core } from './es2015.core';
import { es2015_collection } from './es2015.collection';
import { es2015_iterable } from './es2015.iterable';
import { es2015_core } from './es2015.core';
import { es2015_generator } from './es2015.generator';
import { es2015_iterable } from './es2015.iterable';
import { es2015_promise } from './es2015.promise';
import { es2015_proxy } from './es2015.proxy';
import { es2015_reflect } from './es2015.reflect';
Expand Down
6 changes: 3 additions & 3 deletions packages/scope-manager/src/lib/es2016.full.ts
Expand Up @@ -4,11 +4,11 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { es2016 } from './es2016';
import { dom } from './dom';
import { webworker_importscripts } from './webworker.importscripts';
import { scripthost } from './scripthost';
import { dom_iterable } from './dom.iterable';
import { es2016 } from './es2016';
import { scripthost } from './scripthost';
import { webworker_importscripts } from './webworker.importscripts';

export const es2016_full = {
...es2016,
Expand Down
6 changes: 3 additions & 3 deletions packages/scope-manager/src/lib/es2017.full.ts
Expand Up @@ -4,11 +4,11 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { es2017 } from './es2017';
import { dom } from './dom';
import { webworker_importscripts } from './webworker.importscripts';
import { scripthost } from './scripthost';
import { dom_iterable } from './dom.iterable';
import { es2017 } from './es2017';
import { scripthost } from './scripthost';
import { webworker_importscripts } from './webworker.importscripts';

export const es2017_full = {
...es2017,
Expand Down
2 changes: 1 addition & 1 deletion packages/scope-manager/src/lib/es2017.sharedmemory.ts
Expand Up @@ -4,9 +4,9 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { TYPE, TYPE_VALUE } from './base-config';
import { es2015_symbol } from './es2015.symbol';
import { es2015_symbol_wellknown } from './es2015.symbol.wellknown';
import { TYPE, TYPE_VALUE } from './base-config';

export const es2017_sharedmemory = {
...es2015_symbol,
Expand Down
4 changes: 2 additions & 2 deletions packages/scope-manager/src/lib/es2017.ts
Expand Up @@ -5,12 +5,12 @@

import type { ImplicitLibVariableOptions } from '../variable';
import { es2016 } from './es2016';
import { es2017_date } from './es2017.date';
import { es2017_intl } from './es2017.intl';
import { es2017_object } from './es2017.object';
import { es2017_sharedmemory } from './es2017.sharedmemory';
import { es2017_string } from './es2017.string';
import { es2017_intl } from './es2017.intl';
import { es2017_typedarrays } from './es2017.typedarrays';
import { es2017_date } from './es2017.date';

export const es2017 = {
...es2016,
Expand Down
2 changes: 1 addition & 1 deletion packages/scope-manager/src/lib/es2018.asyncgenerator.ts
Expand Up @@ -4,8 +4,8 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { es2018_asynciterable } from './es2018.asynciterable';
import { TYPE } from './base-config';
import { es2018_asynciterable } from './es2018.asynciterable';

export const es2018_asyncgenerator = {
...es2018_asynciterable,
Expand Down
4 changes: 2 additions & 2 deletions packages/scope-manager/src/lib/es2018.asynciterable.ts
Expand Up @@ -4,9 +4,9 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { es2015_symbol } from './es2015.symbol';
import { es2015_iterable } from './es2015.iterable';
import { TYPE } from './base-config';
import { es2015_iterable } from './es2015.iterable';
import { es2015_symbol } from './es2015.symbol';

export const es2018_asynciterable = {
...es2015_symbol,
Expand Down
8 changes: 4 additions & 4 deletions packages/scope-manager/src/lib/es2018.full.ts
Expand Up @@ -4,12 +4,12 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { es2018 } from './es2018';
import { dom } from './dom';
import { webworker_importscripts } from './webworker.importscripts';
import { scripthost } from './scripthost';
import { dom_iterable } from './dom.iterable';
import { dom_asynciterable } from './dom.asynciterable';
import { dom_iterable } from './dom.iterable';
import { es2018 } from './es2018';
import { scripthost } from './scripthost';
import { webworker_importscripts } from './webworker.importscripts';

export const es2018_full = {
...es2018,
Expand Down
4 changes: 2 additions & 2 deletions packages/scope-manager/src/lib/es2018.ts
Expand Up @@ -5,11 +5,11 @@

import type { ImplicitLibVariableOptions } from '../variable';
import { es2017 } from './es2017';
import { es2018_asynciterable } from './es2018.asynciterable';
import { es2018_asyncgenerator } from './es2018.asyncgenerator';
import { es2018_asynciterable } from './es2018.asynciterable';
import { es2018_intl } from './es2018.intl';
import { es2018_promise } from './es2018.promise';
import { es2018_regexp } from './es2018.regexp';
import { es2018_intl } from './es2018.intl';

export const es2018 = {
...es2017,
Expand Down
8 changes: 4 additions & 4 deletions packages/scope-manager/src/lib/es2019.full.ts
Expand Up @@ -4,12 +4,12 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { es2019 } from './es2019';
import { dom } from './dom';
import { webworker_importscripts } from './webworker.importscripts';
import { scripthost } from './scripthost';
import { dom_iterable } from './dom.iterable';
import { dom_asynciterable } from './dom.asynciterable';
import { dom_iterable } from './dom.iterable';
import { es2019 } from './es2019';
import { scripthost } from './scripthost';
import { webworker_importscripts } from './webworker.importscripts';

export const es2019_full = {
...es2019,
Expand Down
2 changes: 1 addition & 1 deletion packages/scope-manager/src/lib/es2019.object.ts
Expand Up @@ -4,8 +4,8 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { es2015_iterable } from './es2015.iterable';
import { TYPE } from './base-config';
import { es2015_iterable } from './es2015.iterable';

export const es2019_object = {
...es2015_iterable,
Expand Down
2 changes: 1 addition & 1 deletion packages/scope-manager/src/lib/es2019.ts
Expand Up @@ -6,10 +6,10 @@
import type { ImplicitLibVariableOptions } from '../variable';
import { es2018 } from './es2018';
import { es2019_array } from './es2019.array';
import { es2019_intl } from './es2019.intl';
import { es2019_object } from './es2019.object';
import { es2019_string } from './es2019.string';
import { es2019_symbol } from './es2019.symbol';
import { es2019_intl } from './es2019.intl';

export const es2019 = {
...es2018,
Expand Down
2 changes: 1 addition & 1 deletion packages/scope-manager/src/lib/es2020.bigint.ts
Expand Up @@ -4,8 +4,8 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { es2020_intl } from './es2020.intl';
import { TYPE, TYPE_VALUE } from './base-config';
import { es2020_intl } from './es2020.intl';

export const es2020_bigint = {
...es2020_intl,
Expand Down
2 changes: 1 addition & 1 deletion packages/scope-manager/src/lib/es2020.date.ts
Expand Up @@ -4,8 +4,8 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { es2020_intl } from './es2020.intl';
import { TYPE } from './base-config';
import { es2020_intl } from './es2020.intl';

export const es2020_date = {
...es2020_intl,
Expand Down
8 changes: 4 additions & 4 deletions packages/scope-manager/src/lib/es2020.full.ts
Expand Up @@ -4,12 +4,12 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { es2020 } from './es2020';
import { dom } from './dom';
import { webworker_importscripts } from './webworker.importscripts';
import { scripthost } from './scripthost';
import { dom_iterable } from './dom.iterable';
import { dom_asynciterable } from './dom.asynciterable';
import { dom_iterable } from './dom.iterable';
import { es2020 } from './es2020';
import { scripthost } from './scripthost';
import { webworker_importscripts } from './webworker.importscripts';

export const es2020_full = {
...es2020,
Expand Down
2 changes: 1 addition & 1 deletion packages/scope-manager/src/lib/es2020.intl.ts
Expand Up @@ -4,8 +4,8 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { es2018_intl } from './es2018.intl';
import { TYPE_VALUE } from './base-config';
import { es2018_intl } from './es2018.intl';

export const es2020_intl = {
...es2018_intl,
Expand Down
2 changes: 1 addition & 1 deletion packages/scope-manager/src/lib/es2020.number.ts
Expand Up @@ -4,8 +4,8 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { es2020_intl } from './es2020.intl';
import { TYPE } from './base-config';
import { es2020_intl } from './es2020.intl';

export const es2020_number = {
...es2020_intl,
Expand Down
2 changes: 1 addition & 1 deletion packages/scope-manager/src/lib/es2020.string.ts
Expand Up @@ -4,8 +4,8 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { es2015_iterable } from './es2015.iterable';
import { TYPE } from './base-config';
import { es2015_iterable } from './es2015.iterable';

export const es2020_string = {
...es2015_iterable,
Expand Down
2 changes: 1 addition & 1 deletion packages/scope-manager/src/lib/es2020.symbol.wellknown.ts
Expand Up @@ -4,9 +4,9 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { TYPE } from './base-config';
import { es2015_iterable } from './es2015.iterable';
import { es2015_symbol } from './es2015.symbol';
import { TYPE } from './base-config';

export const es2020_symbol_wellknown = {
...es2015_iterable,
Expand Down
2 changes: 1 addition & 1 deletion packages/scope-manager/src/lib/es2020.ts
Expand Up @@ -7,12 +7,12 @@ import type { ImplicitLibVariableOptions } from '../variable';
import { es2019 } from './es2019';
import { es2020_bigint } from './es2020.bigint';
import { es2020_date } from './es2020.date';
import { es2020_intl } from './es2020.intl';
import { es2020_number } from './es2020.number';
import { es2020_promise } from './es2020.promise';
import { es2020_sharedmemory } from './es2020.sharedmemory';
import { es2020_string } from './es2020.string';
import { es2020_symbol_wellknown } from './es2020.symbol.wellknown';
import { es2020_intl } from './es2020.intl';

export const es2020 = {
...es2019,
Expand Down
8 changes: 4 additions & 4 deletions packages/scope-manager/src/lib/es2021.full.ts
Expand Up @@ -4,12 +4,12 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { es2021 } from './es2021';
import { dom } from './dom';
import { webworker_importscripts } from './webworker.importscripts';
import { scripthost } from './scripthost';
import { dom_iterable } from './dom.iterable';
import { dom_asynciterable } from './dom.asynciterable';
import { dom_iterable } from './dom.iterable';
import { es2021 } from './es2021';
import { scripthost } from './scripthost';
import { webworker_importscripts } from './webworker.importscripts';

export const es2021_full = {
...es2021,
Expand Down
2 changes: 1 addition & 1 deletion packages/scope-manager/src/lib/es2021.ts
Expand Up @@ -5,10 +5,10 @@

import type { ImplicitLibVariableOptions } from '../variable';
import { es2020 } from './es2020';
import { es2021_intl } from './es2021.intl';
import { es2021_promise } from './es2021.promise';
import { es2021_string } from './es2021.string';
import { es2021_weakref } from './es2021.weakref';
import { es2021_intl } from './es2021.intl';

export const es2021 = {
...es2020,
Expand Down
8 changes: 4 additions & 4 deletions packages/scope-manager/src/lib/es2022.full.ts
Expand Up @@ -4,12 +4,12 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { es2022 } from './es2022';
import { dom } from './dom';
import { webworker_importscripts } from './webworker.importscripts';
import { scripthost } from './scripthost';
import { dom_iterable } from './dom.iterable';
import { dom_asynciterable } from './dom.asynciterable';
import { dom_iterable } from './dom.iterable';
import { es2022 } from './es2022';
import { scripthost } from './scripthost';
import { webworker_importscripts } from './webworker.importscripts';

export const es2022_full = {
...es2022,
Expand Down
2 changes: 1 addition & 1 deletion packages/scope-manager/src/lib/es2022.ts
Expand Up @@ -9,9 +9,9 @@ import { es2022_array } from './es2022.array';
import { es2022_error } from './es2022.error';
import { es2022_intl } from './es2022.intl';
import { es2022_object } from './es2022.object';
import { es2022_regexp } from './es2022.regexp';
import { es2022_sharedmemory } from './es2022.sharedmemory';
import { es2022_string } from './es2022.string';
import { es2022_regexp } from './es2022.regexp';

export const es2022 = {
...es2021,
Expand Down
8 changes: 4 additions & 4 deletions packages/scope-manager/src/lib/es2023.full.ts
Expand Up @@ -4,12 +4,12 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { es2023 } from './es2023';
import { dom } from './dom';
import { webworker_importscripts } from './webworker.importscripts';
import { scripthost } from './scripthost';
import { dom_iterable } from './dom.iterable';
import { dom_asynciterable } from './dom.asynciterable';
import { dom_iterable } from './dom.iterable';
import { es2023 } from './es2023';
import { scripthost } from './scripthost';
import { webworker_importscripts } from './webworker.importscripts';

export const es2023_full = {
...es2023,
Expand Down
2 changes: 1 addition & 1 deletion packages/scope-manager/src/lib/es5.ts
Expand Up @@ -4,9 +4,9 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { TYPE, TYPE_VALUE } from './base-config';
import { decorators } from './decorators';
import { decorators_legacy } from './decorators.legacy';
import { TYPE, TYPE_VALUE } from './base-config';

export const es5 = {
...decorators,
Expand Down
4 changes: 2 additions & 2 deletions packages/scope-manager/src/lib/es6.ts
Expand Up @@ -5,10 +5,10 @@

import type { ImplicitLibVariableOptions } from '../variable';
import { es5 } from './es5';
import { es2015_core } from './es2015.core';
import { es2015_collection } from './es2015.collection';
import { es2015_iterable } from './es2015.iterable';
import { es2015_core } from './es2015.core';
import { es2015_generator } from './es2015.generator';
import { es2015_iterable } from './es2015.iterable';
import { es2015_promise } from './es2015.promise';
import { es2015_proxy } from './es2015.proxy';
import { es2015_reflect } from './es2015.reflect';
Expand Down
4 changes: 2 additions & 2 deletions packages/scope-manager/src/lib/esnext.asynciterable.ts
Expand Up @@ -4,9 +4,9 @@
// npx nx generate-lib @typescript-eslint/repo-tools

import type { ImplicitLibVariableOptions } from '../variable';
import { es2015_symbol } from './es2015.symbol';
import { es2015_iterable } from './es2015.iterable';
import { TYPE } from './base-config';
import { es2015_iterable } from './es2015.iterable';
import { es2015_symbol } from './es2015.symbol';

export const esnext_asynciterable = {
...es2015_symbol,
Expand Down

0 comments on commit ac13f8a

Please sign in to comment.