Skip to content

Commit

Permalink
Merge branch 'main' into lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bhsd-harry committed Nov 21, 2023
2 parents 95ed274 + d37ee84 commit 0eee3b6
Show file tree
Hide file tree
Showing 11 changed files with 93 additions and 129 deletions.
194 changes: 79 additions & 115 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@
"@cypress/request": "^3.0.1",
"@types/node": "^20.9.0",
"@types/request": "^2.48.12",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"ajv-cli": "^5.0.0",
"eslint": "^8.53.0",
"eslint-plugin-eslint-comments": "^3.2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/parameter.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {extUrlChar, extUrlCharFirst} from '../util/string';
import {generateForChild} from '../util/lint';
import * as Parser from '../index';
import {Token} from '.';
import {Token} from './index';
import type {LintError} from '../index';
import type {AtomToken, SyntaxToken, TranscludeToken} from '../internal';

Expand Down
2 changes: 1 addition & 1 deletion src/pre.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as Parser from '../index';
import {Token} from '.';
import {Token} from './index';
import {NoincludeToken} from './nowiki/noinclude';
import type {AstText, AttributesToken, ExtToken, ConverterToken} from '../internal';

Expand Down
2 changes: 1 addition & 1 deletion src/syntax.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as Parser from '../index';
import {Token} from '.';
import {Token} from './index';

declare type SyntaxTypes = 'plain' | 'heading-trail' | 'magic-word-name' | 'table-syntax';

Expand Down
2 changes: 1 addition & 1 deletion src/table/base.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import * as Parser from '../../index';
import {Token} from '..';
import {Token} from '../index';
import {SyntaxToken} from '../syntax';
import {AttributesToken} from '../attributes';

Expand Down
Loading

0 comments on commit 0eee3b6

Please sign in to comment.