Skip to content

Commit 37cb289

Browse files
dependabot[bot]github-actions[bot]Jason3S
authored
chore(deps-dev): bump eslint-plugin-simple-import-sort from 9.0.0 to 10.0.0 (#4072)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Jason Dent <jason@streetsidesoftware.nl>
1 parent d8739be commit 37cb289

File tree

11 files changed

+18
-18
lines changed

11 files changed

+18
-18
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
"eslint-plugin-node": "^11.1.0",
101101
"eslint-plugin-prettier": "^4.2.1",
102102
"eslint-plugin-promise": "^6.1.1",
103-
"eslint-plugin-simple-import-sort": "^9.0.0",
103+
"eslint-plugin-simple-import-sort": "^10.0.0",
104104
"eslint-plugin-unicorn": "^45.0.2",
105105
"globcat": "^2.0.1",
106106
"inject-markdown": "^1.5.0",

packages/cspell-dictionary/src/SpellingDictionary/TyposDictionary.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import type {
1212
SpellingDictionaryOptions,
1313
SuggestOptions,
1414
} from './SpellingDictionary';
15-
import { type TypoEntry, type TyposDef, processEntriesToTyposDef } from './Typos';
15+
import { processEntriesToTyposDef, type TypoEntry, type TyposDef } from './Typos';
1616
import { extractAllSuggestions, extractIgnoreValues } from './Typos/util';
1717

1818
interface Found {
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export { type LoadOptions, DictionaryLoader } from './DictionaryLoader';
1+
export { DictionaryLoader, type LoadOptions } from './DictionaryLoader';

packages/cspell-tools/src/compiler/wordListParser.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type Operator, opCombine, opCombine as opPipe, opFilter, opMap } from '@cspell/cspell-pipe/sync';
1+
import { opCombine, opCombine as opPipe, type Operator, opFilter, opMap } from '@cspell/cspell-pipe/sync';
22
import { createDictionaryLineParser } from 'cspell-trie-lib';
33
import { uniqueFilter } from 'hunspell-reader/dist/util';
44

packages/cspell-trie-lib/src/lib/SimpleDictionaryParser.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { type Operator, opCombine as opPipe, opConcatMap, opFilter, opMap } from '@cspell/cspell-pipe/sync';
1+
import { opCombine as opPipe, opConcatMap, type Operator, opFilter, opMap } from '@cspell/cspell-pipe/sync';
22

33
import {
44
CASE_INSENSITIVE_PREFIX,

packages/cspell/src/lint/lint.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import type { CSpellReporter, CSpellSettings, Glob, Issue, RunResult, TextDocume
33
import { MessageTypes } from '@cspell/cspell-types';
44
import chalk from 'chalk';
55
import { findRepoRoot, GitIgnore } from 'cspell-gitignore';
6-
import { type GlobMatchOptions, type GlobPatternNormalized, type GlobPatternWithRoot, GlobMatcher } from 'cspell-glob';
6+
import { GlobMatcher, type GlobMatchOptions, type GlobPatternNormalized, type GlobPatternWithRoot } from 'cspell-glob';
77
import type { Logger, ValidationIssue } from 'cspell-lib';
88
import * as cspell from 'cspell-lib';
99
import * as path from 'path';
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export type { CacheOptions } from './CacheOptions';
2-
export { type CreateCacheSettings, calcCacheSettings, createCache, DEFAULT_CACHE_LOCATION } from './createCache';
2+
export { calcCacheSettings, createCache, type CreateCacheSettings, DEFAULT_CACHE_LOCATION } from './createCache';
33
export type { CSpellLintResultCache } from './CSpellLintResultCache';

pnpm-lock.yaml

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test-packages/cspell-types/test-cspell-types-cjs/src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import {
22
type Issue,
3-
type MessageEmitter,
4-
type SpellingErrorEmitter,
53
IssueType,
4+
type MessageEmitter,
65
MessageTypes,
6+
type SpellingErrorEmitter,
77
} from '@cspell/cspell-types';
88

99
export function gatherIssues(text: string): Issue[] {

test-packages/cspell-types/test-cspell-types-esm/src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import {
22
type Issue,
3-
type MessageEmitter,
4-
type SpellingErrorEmitter,
53
IssueType,
4+
type MessageEmitter,
65
MessageTypes,
6+
type SpellingErrorEmitter,
77
} from '@cspell/cspell-types';
88

99
import { parserName } from './parser.js';

test-packages/cspell-types/test-cspell-types-rollup/src/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import {
22
type Issue,
3-
type MessageEmitter,
4-
type SpellingErrorEmitter,
53
IssueType,
4+
type MessageEmitter,
65
MessageTypes,
6+
type SpellingErrorEmitter,
77
} from '@cspell/cspell-types';
88

99
export function gatherIssues(text: string): Issue[] {

0 commit comments

Comments
 (0)