├── .changeset ├── README.md └── config.json ├── .devcontainer ├── Dockerfile ├── base.Dockerfile └── devcontainer.json ├── .env-cmdrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── feature_request.yml │ └── other.md └── workflows │ ├── GHPages.yml │ ├── NodeCI.yml │ ├── Release.yml │ ├── format.yml │ ├── pkg.pr.new-comment.mjs │ ├── pkg.pr.new.yml │ └── stale.yml ├── .gitignore ├── .npmrc ├── .prettierrc.js ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── benchmark └── index.ts ├── docs └── AST.md ├── eslint.config.mjs ├── explorer-v3 ├── .astro │ ├── content-assets.mjs │ ├── content-modules.mjs │ ├── content.d.ts │ ├── data-store.json │ ├── settings.json │ └── types.d.ts ├── .gitignore ├── .npmrc ├── .vscode │ ├── extensions.json │ └── launch.json ├── README.md ├── astro.config.mjs ├── build-system │ ├── pre-build │ │ ├── astro-eslint-parser.js │ │ ├── binary-loader.cjs │ │ ├── escape-string-regexp.js │ │ ├── shim-assert.cjs │ │ └── webpack.config.js │ └── shim │ │ ├── assert.js │ │ ├── crypto.js │ │ ├── fast-glob.js │ │ ├── fs.js │ │ ├── module.js │ │ ├── path.js │ │ ├── resolve.js │ │ ├── typescript.js │ │ ├── url.js │ │ └── util.js ├── package.json ├── public │ └── favicon.ico ├── src │ ├── components │ │ ├── AstExplorer.svelte │ │ ├── AstOptions.svelte │ │ ├── AstroAstExplorer.svelte │ │ ├── Header.astro │ │ ├── MonacoEditor.svelte │ │ ├── SnsBar.svelte │ │ └── scripts │ │ │ ├── json-astro.js │ │ │ ├── json.js │ │ │ ├── languages │ │ │ └── astro │ │ │ │ └── astro.js │ │ │ ├── monaco-loader.js │ │ │ └── shim.js │ ├── env.d.ts │ ├── layouts │ │ └── Layout.astro │ └── pages │ │ ├── astrojs-compiler.astro │ │ └── index.astro └── tsconfig.json ├── package.json ├── renovate.json ├── src ├── ast │ ├── astro.ts │ ├── base.ts │ ├── index.ts │ └── jsx.ts ├── astro-tools │ └── index.ts ├── astro │ └── index.ts ├── context │ ├── index.ts │ ├── parser-options.ts │ ├── resolve-parser │ │ ├── espree.ts │ │ ├── index.ts │ │ └── parser-object.ts │ ├── restore.ts │ └── script.ts ├── debug.ts ├── errors.ts ├── index.ts ├── meta.ts ├── parser │ ├── astro-parser │ │ ├── parse.ts │ │ └── types.ts │ ├── index.ts │ ├── lru-cache.ts │ ├── process-template.ts │ ├── scope │ │ └── index.ts │ ├── script.ts │ ├── sort.ts │ ├── template.ts │ ├── ts-for-v5 │ │ ├── get-project-config-files.ts │ │ ├── parse-tsx-for-typescript.ts │ │ ├── programs.ts │ │ └── resolve-project-list.ts │ └── ts-patch.ts ├── traverse.ts ├── types.ts ├── util │ └── index.ts └── visitor-keys.ts ├── tests ├── fixtures │ ├── integrations │ │ ├── no-unused-vars │ │ │ ├── no-unused-vars-input.astro │ │ │ ├── no-unused-vars-output.json │ │ │ └── no-unused-vars-setup.ts │ │ ├── simple-import-sort │ │ │ ├── simple-import-sort-input.astro │ │ │ ├── simple-import-sort-output.astro │ │ │ ├── simple-import-sort-output.json │ │ │ ├── simple-import-sort-setup.ts │ │ │ ├── simple-import-sort-with-semi-input.astro │ │ │ ├── simple-import-sort-with-semi-output.astro │ │ │ ├── simple-import-sort-with-semi-output.json │ │ │ └── simple-import-sort-with-semi-setup.ts │ │ ├── ts-no-unsafe-assignment │ │ │ ├── ts-no-unsafe-assignment-input.astro │ │ │ ├── ts-no-unsafe-assignment-output.json │ │ │ └── ts-no-unsafe-assignment-setup.ts │ │ └── ts-no-unused-vars │ │ │ ├── ts-no-unused-vars-input.astro │ │ │ ├── ts-no-unused-vars-output.json │ │ │ ├── ts-no-unused-vars-setup.ts │ │ │ ├── ts-no-unused-vars2-input.astro │ │ │ ├── ts-no-unused-vars2-output.json │ │ │ └── ts-no-unused-vars2-setup.ts │ ├── parser │ │ ├── ast │ │ │ ├── alpinejs01-input.astro │ │ │ ├── alpinejs01-output.json │ │ │ ├── alpinejs01-scope-output.json │ │ │ ├── alpinejs02-input.astro │ │ │ ├── alpinejs02-no-undef-result.json │ │ │ ├── alpinejs02-output.json │ │ │ ├── alpinejs02-scope-output.json │ │ │ ├── attr01-unquote-input.astro │ │ │ ├── attr01-unquote-output.json │ │ │ ├── attr01-unquote-scope-output.json │ │ │ ├── client-side-scripts-input.astro │ │ │ ├── client-side-scripts-output.json │ │ │ ├── client-side-scripts-scope-output.json │ │ │ ├── conflict-set-text-with-child-input.astro │ │ │ ├── conflict-set-text-with-child-no-undef-result.json │ │ │ ├── conflict-set-text-with-child-output.json │ │ │ ├── conflict-set-text-with-child-scope-output.json │ │ │ ├── core-concepts │ │ │ │ ├── astro-components │ │ │ │ │ ├── 01-component-overview-01-input.astro │ │ │ │ │ ├── 01-component-overview-01-output.json │ │ │ │ │ ├── 01-component-overview-01-scope-output.json │ │ │ │ │ ├── 01-component-overview-02-input.astro │ │ │ │ │ ├── 01-component-overview-02-output.json │ │ │ │ │ ├── 01-component-overview-02-scope-output.json │ │ │ │ │ ├── 02-the-component-script-01-input.astro │ │ │ │ │ ├── 02-the-component-script-01-no-unused-vars-result.json │ │ │ │ │ ├── 02-the-component-script-01-output.json │ │ │ │ │ ├── 02-the-component-script-01-scope-output.json │ │ │ │ │ ├── 03-the-component-template-01-input.astro │ │ │ │ │ ├── 03-the-component-template-01-output.json │ │ │ │ │ ├── 03-the-component-template-01-scope-output.json │ │ │ │ │ ├── 04-dynamic-jsx-expressions-01-input.astro │ │ │ │ │ ├── 04-dynamic-jsx-expressions-01-output.json │ │ │ │ │ ├── 04-dynamic-jsx-expressions-01-scope-output.json │ │ │ │ │ ├── 04-dynamic-jsx-expressions-02-input.astro │ │ │ │ │ ├── 04-dynamic-jsx-expressions-02-no-undef-result.json │ │ │ │ │ ├── 04-dynamic-jsx-expressions-02-output.json │ │ │ │ │ ├── 04-dynamic-jsx-expressions-02-scope-output.json │ │ │ │ │ ├── 04-dynamic-jsx-expressions-03-input.astro │ │ │ │ │ ├── 04-dynamic-jsx-expressions-03-output.json │ │ │ │ │ ├── 04-dynamic-jsx-expressions-03-scope-output.json │ │ │ │ │ ├── 04-dynamic-jsx-expressions-04-input.astro │ │ │ │ │ ├── 04-dynamic-jsx-expressions-04-output.json │ │ │ │ │ ├── 04-dynamic-jsx-expressions-04-scope-output.json │ │ │ │ │ ├── 05-component-props-01-input.astro │ │ │ │ │ ├── 05-component-props-01-output.json │ │ │ │ │ ├── 05-component-props-01-scope-output.json │ │ │ │ │ ├── 05-component-props-01-semi-result.json │ │ │ │ │ ├── 05-component-props-02-input.astro │ │ │ │ │ ├── 05-component-props-02-output.json │ │ │ │ │ ├── 05-component-props-02-scope-output.json │ │ │ │ │ ├── 05-component-props-03-input.astro │ │ │ │ │ ├── 05-component-props-03-output.json │ │ │ │ │ ├── 05-component-props-03-scope-output.json │ │ │ │ │ ├── 05-component-props-03-semi-result.json │ │ │ │ │ ├── 06-slots-01-input.astro │ │ │ │ │ ├── 06-slots-01-output.json │ │ │ │ │ ├── 06-slots-01-scope-output.json │ │ │ │ │ ├── 06-slots-01-semi-result.json │ │ │ │ │ ├── 06-slots-02-input.astro │ │ │ │ │ ├── 06-slots-02-no-undef-result.json │ │ │ │ │ ├── 06-slots-02-output.json │ │ │ │ │ ├── 06-slots-02-scope-output.json │ │ │ │ │ ├── 06-slots-03-input.astro │ │ │ │ │ ├── 06-slots-03-output.json │ │ │ │ │ ├── 06-slots-03-scope-output.json │ │ │ │ │ ├── 06-slots-03-semi-result.json │ │ │ │ │ ├── 06-slots-04-input.astro │ │ │ │ │ ├── 06-slots-04-no-undef-result.json │ │ │ │ │ ├── 06-slots-04-output.json │ │ │ │ │ ├── 06-slots-04-scope-output.json │ │ │ │ │ ├── 06-slots-05-input.astro │ │ │ │ │ ├── 06-slots-05-output.json │ │ │ │ │ ├── 06-slots-05-scope-output.json │ │ │ │ │ ├── 06-slots-05-semi-result.json │ │ │ │ │ ├── 07-css-styles-01-input.astro │ │ │ │ │ ├── 07-css-styles-01-output.json │ │ │ │ │ ├── 07-css-styles-01-scope-output.json │ │ │ │ │ ├── 08-client-side-scripts-01-input.astro │ │ │ │ │ ├── 08-client-side-scripts-01-output.json │ │ │ │ │ ├── 08-client-side-scripts-01-scope-output.json │ │ │ │ │ ├── 08-client-side-scripts-02-input.astro │ │ │ │ │ ├── 08-client-side-scripts-02-output.json │ │ │ │ │ ├── 08-client-side-scripts-02-scope-output.json │ │ │ │ │ ├── 08-client-side-scripts-03-input.astro │ │ │ │ │ ├── 08-client-side-scripts-03-output.json │ │ │ │ │ └── 08-client-side-scripts-03-scope-output.json │ │ │ │ ├── astro-pages │ │ │ │ │ ├── 01-page-html-01-input.astro │ │ │ │ │ ├── 01-page-html-01-output.json │ │ │ │ │ ├── 01-page-html-01-scope-output.json │ │ │ │ │ ├── 02-leveraging-page-layouts-01-input.astro │ │ │ │ │ ├── 02-leveraging-page-layouts-01-output.json │ │ │ │ │ └── 02-leveraging-page-layouts-01-scope-output.json │ │ │ │ └── layouts │ │ │ │ │ ├── 01-nesting-layouts-01-input.astro │ │ │ │ │ ├── 01-nesting-layouts-01-output.json │ │ │ │ │ ├── 01-nesting-layouts-01-scope-output.json │ │ │ │ │ ├── 01-nesting-layouts-01-semi-result.json │ │ │ │ │ ├── 01-sample-layout-01-input.astro │ │ │ │ │ ├── 01-sample-layout-01-output.json │ │ │ │ │ ├── 01-sample-layout-01-scope-output.json │ │ │ │ │ ├── 01-sample-layout-02-input.astro │ │ │ │ │ ├── 01-sample-layout-02-output.json │ │ │ │ │ └── 01-sample-layout-02-scope-output.json │ │ │ ├── doctype-input.astro │ │ │ ├── doctype-output.json │ │ │ ├── doctype-scope-output.json │ │ │ ├── doctype-v4-input.astro │ │ │ ├── doctype-v4-output.json │ │ │ ├── doctype-v4-scope-output.json │ │ │ ├── doctype-with-script1-input.astro │ │ │ ├── doctype-with-script1-output.json │ │ │ ├── doctype-with-script1-scope-output.json │ │ │ ├── doctype-with-script1-semi-result.json │ │ │ ├── empty-input.astro │ │ │ ├── empty-output.json │ │ │ ├── empty-scope-output.json │ │ │ ├── empty2-input.astro │ │ │ ├── empty2-output.json │ │ │ ├── empty2-scope-output.json │ │ │ ├── escape-bug-input.astro │ │ │ ├── escape-bug-output.json │ │ │ ├── escape-bug-scope-output.json │ │ │ ├── escape-bug-semi-result.json │ │ │ ├── escape-bug02-input.astro │ │ │ ├── escape-bug02-output.json │ │ │ ├── escape-bug02-scope-output.json │ │ │ ├── expression-text01-input.astro │ │ │ ├── expression-text01-output.json │ │ │ ├── expression-text01-scope-output.json │ │ │ ├── expression-text01-semi-result.json │ │ │ ├── fragment-input.astro │ │ │ ├── fragment-output.json │ │ │ ├── fragment-scope-output.json │ │ │ ├── fragment-with-expression01-input.astro │ │ │ ├── fragment-with-expression01-output.json │ │ │ ├── fragment-with-expression01-scope-output.json │ │ │ ├── fragment-with-expression01-semi-result.json │ │ │ ├── fragment-with-expression02-input.astro │ │ │ ├── fragment-with-expression02-output.json │ │ │ ├── fragment-with-expression02-scope-output.json │ │ │ ├── fragment-with-expression02-semi-result.json │ │ │ ├── fragment-with-expression03-array-map-input.astro │ │ │ ├── fragment-with-expression03-array-map-output.json │ │ │ ├── fragment-with-expression03-array-map-scope-output.json │ │ │ ├── frontmatter-after-comment-input.astro │ │ │ ├── frontmatter-after-comment-output.json │ │ │ ├── frontmatter-after-comment-scope-output.json │ │ │ ├── frontmatter-after-comment-semi-result.json │ │ │ ├── frontmatter-after-doctype-with-script-input.astro │ │ │ ├── frontmatter-after-doctype-with-script-output.json │ │ │ ├── frontmatter-after-doctype-with-script-scope-output.json │ │ │ ├── frontmatter-after-doctype-with-script-semi-result.json │ │ │ ├── frontmatter-after-doctype-with-script02-input.astro │ │ │ ├── frontmatter-after-doctype-with-script02-output.json │ │ │ ├── frontmatter-after-doctype-with-script02-scope-output.json │ │ │ ├── frontmatter-after-doctype-with-script02-semi-result.json │ │ │ ├── frontmatter1-input.astro │ │ │ ├── frontmatter1-output.json │ │ │ ├── frontmatter1-scope-output.json │ │ │ ├── frontmatter1-semi-result.json │ │ │ ├── frontmatter2-input.astro │ │ │ ├── frontmatter2-output.json │ │ │ ├── frontmatter2-scope-output.json │ │ │ ├── frontmatter2-semi-result.json │ │ │ ├── guides │ │ │ │ └── debugging │ │ │ │ │ ├── astro-debug-component01-input.astro │ │ │ │ │ ├── astro-debug-component01-output.json │ │ │ │ │ ├── astro-debug-component01-scope-output.json │ │ │ │ │ ├── astro-debug-component02-input.astro │ │ │ │ │ ├── astro-debug-component02-output.json │ │ │ │ │ └── astro-debug-component02-scope-output.json │ │ │ ├── html-element01-input.astro │ │ │ ├── html-element01-output.json │ │ │ ├── html-element01-scope-output.json │ │ │ ├── html-element02-input.astro │ │ │ ├── html-element02-output.json │ │ │ ├── html-element02-scope-output.json │ │ │ ├── html-element03-input.astro │ │ │ ├── html-element03-output.json │ │ │ ├── html-element03-scope-output.json │ │ │ ├── html-element04-input.astro │ │ │ ├── html-element04-output.json │ │ │ ├── html-element04-scope-output.json │ │ │ ├── html-element05-input.astro │ │ │ ├── html-element05-output.json │ │ │ ├── html-element05-scope-output.json │ │ │ ├── html-entity01-input.astro │ │ │ ├── html-entity01-output.json │ │ │ ├── html-entity01-scope-output.json │ │ │ ├── html-entity02-single-quote-input.astro │ │ │ ├── html-entity02-single-quote-output.json │ │ │ ├── html-entity02-single-quote-scope-output.json │ │ │ ├── html-entity03-unquote-input.astro │ │ │ ├── html-entity03-unquote-output.json │ │ │ ├── html-entity03-unquote-scope-output.json │ │ │ ├── html-entry04-input.astro │ │ │ ├── html-entry04-output.json │ │ │ ├── html-entry04-scope-output.json │ │ │ ├── import-loc-input.astro │ │ │ ├── import-loc-output.json │ │ │ ├── import-loc-scope-output.json │ │ │ ├── import-loc-semi-result.json │ │ │ ├── import-loc2-input.astro │ │ │ ├── import-loc2-output.json │ │ │ ├── import-loc2-scope-output.json │ │ │ ├── is-raw-input.astro │ │ │ ├── is-raw-output.json │ │ │ ├── is-raw-scope-output.json │ │ │ ├── js-jsx01-input.astro │ │ │ ├── js-jsx01-output.json │ │ │ ├── js-jsx01-requirements.json │ │ │ ├── js-jsx01-scope-output.json │ │ │ ├── js-jsx02-input.astro │ │ │ ├── js-jsx02-output.json │ │ │ ├── js-jsx02-scope-output.json │ │ │ ├── js-test01-input.astro │ │ │ ├── js-test01-output.json │ │ │ ├── js-test01-scope-output.json │ │ │ ├── js-test01-semi-result.json │ │ │ ├── my-astro-site │ │ │ │ ├── Logo-input.astro │ │ │ │ ├── Logo-output.json │ │ │ │ ├── Logo-scope-output.json │ │ │ │ ├── index-input.astro │ │ │ │ ├── index-output.json │ │ │ │ ├── index-prefer-const-result.json │ │ │ │ └── index-scope-output.json │ │ │ ├── omit-end-tag-input.astro │ │ │ ├── omit-end-tag-output.json │ │ │ ├── omit-end-tag-scope-output.json │ │ │ ├── play │ │ │ │ ├── page-input.astro │ │ │ │ ├── page-output.json │ │ │ │ └── page-scope-output.json │ │ │ ├── reference │ │ │ │ └── directives-reference │ │ │ │ │ ├── 01-common-directives-01-input.astro │ │ │ │ │ ├── 01-common-directives-01-output.json │ │ │ │ │ ├── 01-common-directives-01-scope-output.json │ │ │ │ │ ├── 01-common-directives-02-input.astro │ │ │ │ │ ├── 01-common-directives-02-output.json │ │ │ │ │ ├── 01-common-directives-02-scope-output.json │ │ │ │ │ ├── 01-common-directives-02-semi-result.json │ │ │ │ │ ├── 01-common-directives-03-input.astro │ │ │ │ │ ├── 01-common-directives-03-no-undef-result.json │ │ │ │ │ ├── 01-common-directives-03-output.json │ │ │ │ │ ├── 01-common-directives-03-scope-output.json │ │ │ │ │ ├── 01-common-directives-04-input.astro │ │ │ │ │ ├── 01-common-directives-04-output.json │ │ │ │ │ ├── 01-common-directives-04-scope-output.json │ │ │ │ │ ├── 01-common-directives-04-semi-result.json │ │ │ │ │ ├── 02-client-directives-01-input.astro │ │ │ │ │ ├── 02-client-directives-01-output.json │ │ │ │ │ ├── 02-client-directives-01-scope-output.json │ │ │ │ │ ├── 02-client-directives-02-input.astro │ │ │ │ │ ├── 02-client-directives-02-output.json │ │ │ │ │ ├── 02-client-directives-02-scope-output.json │ │ │ │ │ ├── 02-client-directives-03-input.astro │ │ │ │ │ ├── 02-client-directives-03-output.json │ │ │ │ │ ├── 02-client-directives-03-scope-output.json │ │ │ │ │ ├── 02-client-directives-04-input.astro │ │ │ │ │ ├── 02-client-directives-04-output.json │ │ │ │ │ ├── 02-client-directives-04-scope-output.json │ │ │ │ │ ├── 02-client-directives-05-input.astro │ │ │ │ │ ├── 02-client-directives-05-output.json │ │ │ │ │ ├── 02-client-directives-05-scope-output.json │ │ │ │ │ ├── 03-script-and-style-directives-01-input.astro │ │ │ │ │ ├── 03-script-and-style-directives-01-output.json │ │ │ │ │ ├── 03-script-and-style-directives-01-scope-output.json │ │ │ │ │ ├── 03-script-and-style-directives-02-input.astro │ │ │ │ │ ├── 03-script-and-style-directives-02-output.json │ │ │ │ │ ├── 03-script-and-style-directives-02-scope-output.json │ │ │ │ │ ├── 03-script-and-style-directives-03-input.astro │ │ │ │ │ ├── 03-script-and-style-directives-03-output.json │ │ │ │ │ ├── 03-script-and-style-directives-03-scope-output.json │ │ │ │ │ ├── 04-advanced-directives-01-input.astro │ │ │ │ │ ├── 04-advanced-directives-01-output.json │ │ │ │ │ └── 04-advanced-directives-01-scope-output.json │ │ │ ├── self-closing-tag-input.astro │ │ │ ├── self-closing-tag-output.json │ │ │ ├── self-closing-tag-scope-output.json │ │ │ ├── self-closing-tag02-input.astro │ │ │ ├── self-closing-tag02-output.json │ │ │ ├── self-closing-tag02-scope-output.json │ │ │ ├── style-tag-input.astro │ │ │ ├── style-tag-output.json │ │ │ ├── style-tag-scope-output.json │ │ │ ├── table-with-each01-input.astro │ │ │ ├── table-with-each01-output.json │ │ │ ├── table-with-each01-scope-output.json │ │ │ ├── template-syntaxes │ │ │ │ ├── shorthand-atrribute-input.astro │ │ │ │ ├── shorthand-atrribute-output.json │ │ │ │ ├── shorthand-atrribute-prefer-const-result.json │ │ │ │ ├── shorthand-atrribute-scope-output.json │ │ │ │ ├── spread-atrribute-input.astro │ │ │ │ ├── spread-atrribute-output.json │ │ │ │ ├── spread-atrribute-scope-output.json │ │ │ │ ├── spread-atrribute-semi-result.json │ │ │ │ ├── template-literal-atrribute-input.astro │ │ │ │ ├── template-literal-atrribute-output.json │ │ │ │ ├── template-literal-atrribute-prefer-const-result.json │ │ │ │ └── template-literal-atrribute-scope-output.json │ │ │ ├── ts-astro-type01-input.astro │ │ │ ├── ts-astro-type01-output.json │ │ │ ├── ts-astro-type01-scope-output.json │ │ │ ├── ts-astro-type01-type-output.astro │ │ │ ├── ts-astro-type02-input.astro │ │ │ ├── ts-astro-type02-output.json │ │ │ ├── ts-astro-type02-scope-output.json │ │ │ ├── ts-astro-type02-type-output.astro │ │ │ ├── tsconfig.json │ │ │ ├── withastro │ │ │ │ ├── astro.build │ │ │ │ │ └── src │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── ArrowLink-input.astro │ │ │ │ │ │ ├── ArrowLink-no-unused-vars-result.json │ │ │ │ │ │ ├── ArrowLink-output.json │ │ │ │ │ │ ├── ArrowLink-scope-output.json │ │ │ │ │ │ ├── Search-input.astro │ │ │ │ │ │ ├── Search-output.json │ │ │ │ │ │ ├── Search-scope-output.json │ │ │ │ │ │ ├── Search-semi-result.json │ │ │ │ │ │ └── landing │ │ │ │ │ │ │ ├── DemoTTI-input.astro │ │ │ │ │ │ │ ├── DemoTTI-no-undef-result.json │ │ │ │ │ │ │ ├── DemoTTI-output.json │ │ │ │ │ │ │ ├── DemoTTI-scope-output.json │ │ │ │ │ │ │ ├── Sponsors-input.astro │ │ │ │ │ │ │ ├── Sponsors-output.json │ │ │ │ │ │ │ ├── Sponsors-scope-output.json │ │ │ │ │ │ │ └── Sponsors-semi-result.json │ │ │ │ │ │ └── layouts │ │ │ │ │ │ ├── Base-input.astro │ │ │ │ │ │ ├── Base-output.json │ │ │ │ │ │ ├── Base-scope-output.json │ │ │ │ │ │ └── Base-space-infix-ops-result.json │ │ │ │ └── docs │ │ │ │ │ └── src │ │ │ │ │ └── pages │ │ │ │ │ └── lighthouse │ │ │ │ │ ├── 11ty-input.astro │ │ │ │ │ ├── 11ty-output.json │ │ │ │ │ └── 11ty-scope-output.json │ │ │ ├── without-frontmatter-input.astro │ │ │ ├── without-frontmatter-output.json │ │ │ └── without-frontmatter-scope-output.json │ │ └── error │ │ │ ├── error-input.astro │ │ │ └── error-output.json │ └── tsconfig.test.json └── src │ ├── integrations.ts │ ├── meta.ts │ └── parser │ ├── error.ts │ ├── eslint-rules.ts │ ├── eslint.ts │ ├── parser-options.ts │ ├── parser.ts │ ├── test-utils.ts │ └── ts-vars.ts ├── tools ├── parser-test.ts └── update-fixtures.ts ├── tsconfig.json └── tsup.config.ts /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/base.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/.devcontainer/base.Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.env-cmdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/.env-cmdrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/.github/ISSUE_TEMPLATE/other.md -------------------------------------------------------------------------------- /.github/workflows/GHPages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/.github/workflows/GHPages.yml -------------------------------------------------------------------------------- /.github/workflows/NodeCI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/.github/workflows/NodeCI.yml -------------------------------------------------------------------------------- /.github/workflows/Release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/.github/workflows/Release.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/pkg.pr.new-comment.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/.github/workflows/pkg.pr.new-comment.mjs -------------------------------------------------------------------------------- /.github/workflows/pkg.pr.new.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/.github/workflows/pkg.pr.new.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | force=true 3 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/benchmark/index.ts -------------------------------------------------------------------------------- /docs/AST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/docs/AST.md -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /explorer-v3/.astro/content-assets.mjs: -------------------------------------------------------------------------------- 1 | export default new Map(); -------------------------------------------------------------------------------- /explorer-v3/.astro/content-modules.mjs: -------------------------------------------------------------------------------- 1 | export default new Map(); -------------------------------------------------------------------------------- /explorer-v3/.astro/content.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/.astro/content.d.ts -------------------------------------------------------------------------------- /explorer-v3/.astro/data-store.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/.astro/data-store.json -------------------------------------------------------------------------------- /explorer-v3/.astro/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "_variables": { 3 | "lastUpdateCheck": 1737786474321 4 | } 5 | } -------------------------------------------------------------------------------- /explorer-v3/.astro/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/.astro/types.d.ts -------------------------------------------------------------------------------- /explorer-v3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/.gitignore -------------------------------------------------------------------------------- /explorer-v3/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/.npmrc -------------------------------------------------------------------------------- /explorer-v3/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/.vscode/extensions.json -------------------------------------------------------------------------------- /explorer-v3/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/.vscode/launch.json -------------------------------------------------------------------------------- /explorer-v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/README.md -------------------------------------------------------------------------------- /explorer-v3/astro.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/astro.config.mjs -------------------------------------------------------------------------------- /explorer-v3/build-system/pre-build/astro-eslint-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/build-system/pre-build/astro-eslint-parser.js -------------------------------------------------------------------------------- /explorer-v3/build-system/pre-build/binary-loader.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/build-system/pre-build/binary-loader.cjs -------------------------------------------------------------------------------- /explorer-v3/build-system/pre-build/escape-string-regexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/build-system/pre-build/escape-string-regexp.js -------------------------------------------------------------------------------- /explorer-v3/build-system/pre-build/shim-assert.cjs: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | module.exports = function () { 4 | "shim-assert"; 5 | }; 6 | -------------------------------------------------------------------------------- /explorer-v3/build-system/pre-build/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/build-system/pre-build/webpack.config.js -------------------------------------------------------------------------------- /explorer-v3/build-system/shim/assert.js: -------------------------------------------------------------------------------- 1 | export default function () { 2 | "assert shim"; 3 | } 4 | -------------------------------------------------------------------------------- /explorer-v3/build-system/shim/crypto.js: -------------------------------------------------------------------------------- 1 | export default { 2 | "crypto shim": "", 3 | }; 4 | -------------------------------------------------------------------------------- /explorer-v3/build-system/shim/fast-glob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/build-system/shim/fast-glob.js -------------------------------------------------------------------------------- /explorer-v3/build-system/shim/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/build-system/shim/fs.js -------------------------------------------------------------------------------- /explorer-v3/build-system/shim/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/build-system/shim/module.js -------------------------------------------------------------------------------- /explorer-v3/build-system/shim/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/build-system/shim/path.js -------------------------------------------------------------------------------- /explorer-v3/build-system/shim/resolve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/build-system/shim/resolve.js -------------------------------------------------------------------------------- /explorer-v3/build-system/shim/typescript.js: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /explorer-v3/build-system/shim/url.js: -------------------------------------------------------------------------------- 1 | export default {}; 2 | -------------------------------------------------------------------------------- /explorer-v3/build-system/shim/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/build-system/shim/util.js -------------------------------------------------------------------------------- /explorer-v3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/package.json -------------------------------------------------------------------------------- /explorer-v3/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/public/favicon.ico -------------------------------------------------------------------------------- /explorer-v3/src/components/AstExplorer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/src/components/AstExplorer.svelte -------------------------------------------------------------------------------- /explorer-v3/src/components/AstOptions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/src/components/AstOptions.svelte -------------------------------------------------------------------------------- /explorer-v3/src/components/AstroAstExplorer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/src/components/AstroAstExplorer.svelte -------------------------------------------------------------------------------- /explorer-v3/src/components/Header.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/src/components/Header.astro -------------------------------------------------------------------------------- /explorer-v3/src/components/MonacoEditor.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/src/components/MonacoEditor.svelte -------------------------------------------------------------------------------- /explorer-v3/src/components/SnsBar.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/src/components/SnsBar.svelte -------------------------------------------------------------------------------- /explorer-v3/src/components/scripts/json-astro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/src/components/scripts/json-astro.js -------------------------------------------------------------------------------- /explorer-v3/src/components/scripts/json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/src/components/scripts/json.js -------------------------------------------------------------------------------- /explorer-v3/src/components/scripts/languages/astro/astro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/src/components/scripts/languages/astro/astro.js -------------------------------------------------------------------------------- /explorer-v3/src/components/scripts/monaco-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/src/components/scripts/monaco-loader.js -------------------------------------------------------------------------------- /explorer-v3/src/components/scripts/shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/src/components/scripts/shim.js -------------------------------------------------------------------------------- /explorer-v3/src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/src/env.d.ts -------------------------------------------------------------------------------- /explorer-v3/src/layouts/Layout.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/src/layouts/Layout.astro -------------------------------------------------------------------------------- /explorer-v3/src/pages/astrojs-compiler.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/src/pages/astrojs-compiler.astro -------------------------------------------------------------------------------- /explorer-v3/src/pages/index.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/src/pages/index.astro -------------------------------------------------------------------------------- /explorer-v3/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/explorer-v3/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/renovate.json -------------------------------------------------------------------------------- /src/ast/astro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/ast/astro.ts -------------------------------------------------------------------------------- /src/ast/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/ast/base.ts -------------------------------------------------------------------------------- /src/ast/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/ast/index.ts -------------------------------------------------------------------------------- /src/ast/jsx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/ast/jsx.ts -------------------------------------------------------------------------------- /src/astro-tools/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/astro-tools/index.ts -------------------------------------------------------------------------------- /src/astro/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/astro/index.ts -------------------------------------------------------------------------------- /src/context/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/context/index.ts -------------------------------------------------------------------------------- /src/context/parser-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/context/parser-options.ts -------------------------------------------------------------------------------- /src/context/resolve-parser/espree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/context/resolve-parser/espree.ts -------------------------------------------------------------------------------- /src/context/resolve-parser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/context/resolve-parser/index.ts -------------------------------------------------------------------------------- /src/context/resolve-parser/parser-object.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/context/resolve-parser/parser-object.ts -------------------------------------------------------------------------------- /src/context/restore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/context/restore.ts -------------------------------------------------------------------------------- /src/context/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/context/script.ts -------------------------------------------------------------------------------- /src/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/debug.ts -------------------------------------------------------------------------------- /src/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/errors.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/meta.ts: -------------------------------------------------------------------------------- 1 | export { name, version } from "../package.json"; 2 | -------------------------------------------------------------------------------- /src/parser/astro-parser/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/parser/astro-parser/parse.ts -------------------------------------------------------------------------------- /src/parser/astro-parser/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/parser/astro-parser/types.ts -------------------------------------------------------------------------------- /src/parser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/parser/index.ts -------------------------------------------------------------------------------- /src/parser/lru-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/parser/lru-cache.ts -------------------------------------------------------------------------------- /src/parser/process-template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/parser/process-template.ts -------------------------------------------------------------------------------- /src/parser/scope/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/parser/scope/index.ts -------------------------------------------------------------------------------- /src/parser/script.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/parser/script.ts -------------------------------------------------------------------------------- /src/parser/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/parser/sort.ts -------------------------------------------------------------------------------- /src/parser/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/parser/template.ts -------------------------------------------------------------------------------- /src/parser/ts-for-v5/get-project-config-files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/parser/ts-for-v5/get-project-config-files.ts -------------------------------------------------------------------------------- /src/parser/ts-for-v5/parse-tsx-for-typescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/parser/ts-for-v5/parse-tsx-for-typescript.ts -------------------------------------------------------------------------------- /src/parser/ts-for-v5/programs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/parser/ts-for-v5/programs.ts -------------------------------------------------------------------------------- /src/parser/ts-for-v5/resolve-project-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/parser/ts-for-v5/resolve-project-list.ts -------------------------------------------------------------------------------- /src/parser/ts-patch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/parser/ts-patch.ts -------------------------------------------------------------------------------- /src/traverse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/traverse.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/util/index.ts -------------------------------------------------------------------------------- /src/visitor-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/src/visitor-keys.ts -------------------------------------------------------------------------------- /tests/fixtures/integrations/no-unused-vars/no-unused-vars-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/integrations/no-unused-vars/no-unused-vars-input.astro -------------------------------------------------------------------------------- /tests/fixtures/integrations/no-unused-vars/no-unused-vars-output.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/fixtures/integrations/no-unused-vars/no-unused-vars-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/integrations/no-unused-vars/no-unused-vars-setup.ts -------------------------------------------------------------------------------- /tests/fixtures/integrations/simple-import-sort/simple-import-sort-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/integrations/simple-import-sort/simple-import-sort-input.astro -------------------------------------------------------------------------------- /tests/fixtures/integrations/simple-import-sort/simple-import-sort-output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/integrations/simple-import-sort/simple-import-sort-output.astro -------------------------------------------------------------------------------- /tests/fixtures/integrations/simple-import-sort/simple-import-sort-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/integrations/simple-import-sort/simple-import-sort-output.json -------------------------------------------------------------------------------- /tests/fixtures/integrations/simple-import-sort/simple-import-sort-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/integrations/simple-import-sort/simple-import-sort-setup.ts -------------------------------------------------------------------------------- /tests/fixtures/integrations/simple-import-sort/simple-import-sort-with-semi-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/integrations/simple-import-sort/simple-import-sort-with-semi-input.astro -------------------------------------------------------------------------------- /tests/fixtures/integrations/simple-import-sort/simple-import-sort-with-semi-output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/integrations/simple-import-sort/simple-import-sort-with-semi-output.astro -------------------------------------------------------------------------------- /tests/fixtures/integrations/simple-import-sort/simple-import-sort-with-semi-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/integrations/simple-import-sort/simple-import-sort-with-semi-output.json -------------------------------------------------------------------------------- /tests/fixtures/integrations/simple-import-sort/simple-import-sort-with-semi-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/integrations/simple-import-sort/simple-import-sort-with-semi-setup.ts -------------------------------------------------------------------------------- /tests/fixtures/integrations/ts-no-unsafe-assignment/ts-no-unsafe-assignment-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/integrations/ts-no-unsafe-assignment/ts-no-unsafe-assignment-input.astro -------------------------------------------------------------------------------- /tests/fixtures/integrations/ts-no-unsafe-assignment/ts-no-unsafe-assignment-output.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/fixtures/integrations/ts-no-unsafe-assignment/ts-no-unsafe-assignment-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/integrations/ts-no-unsafe-assignment/ts-no-unsafe-assignment-setup.ts -------------------------------------------------------------------------------- /tests/fixtures/integrations/ts-no-unused-vars/ts-no-unused-vars-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/integrations/ts-no-unused-vars/ts-no-unused-vars-input.astro -------------------------------------------------------------------------------- /tests/fixtures/integrations/ts-no-unused-vars/ts-no-unused-vars-output.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/fixtures/integrations/ts-no-unused-vars/ts-no-unused-vars-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/integrations/ts-no-unused-vars/ts-no-unused-vars-setup.ts -------------------------------------------------------------------------------- /tests/fixtures/integrations/ts-no-unused-vars/ts-no-unused-vars2-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/integrations/ts-no-unused-vars/ts-no-unused-vars2-input.astro -------------------------------------------------------------------------------- /tests/fixtures/integrations/ts-no-unused-vars/ts-no-unused-vars2-output.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tests/fixtures/integrations/ts-no-unused-vars/ts-no-unused-vars2-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/integrations/ts-no-unused-vars/ts-no-unused-vars2-setup.ts -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/alpinejs01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/alpinejs01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/alpinejs01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/alpinejs01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/alpinejs01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/alpinejs01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/alpinejs02-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/alpinejs02-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/alpinejs02-no-undef-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/alpinejs02-no-undef-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/alpinejs02-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/alpinejs02-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/alpinejs02-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/alpinejs02-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/attr01-unquote-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/attr01-unquote-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/attr01-unquote-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/attr01-unquote-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/attr01-unquote-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/attr01-unquote-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/client-side-scripts-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/client-side-scripts-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/client-side-scripts-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/client-side-scripts-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/client-side-scripts-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/client-side-scripts-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/conflict-set-text-with-child-input.astro: -------------------------------------------------------------------------------- 1 | 2 |

!

-------------------------------------------------------------------------------- /tests/fixtures/parser/ast/conflict-set-text-with-child-no-undef-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/conflict-set-text-with-child-no-undef-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/conflict-set-text-with-child-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/conflict-set-text-with-child-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/conflict-set-text-with-child-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/conflict-set-text-with-child-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/01-component-overview-01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/01-component-overview-01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/01-component-overview-01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/01-component-overview-01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/01-component-overview-01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/01-component-overview-01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/01-component-overview-02-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/01-component-overview-02-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/01-component-overview-02-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/01-component-overview-02-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/01-component-overview-02-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/01-component-overview-02-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/02-the-component-script-01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/02-the-component-script-01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/02-the-component-script-01-no-unused-vars-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/02-the-component-script-01-no-unused-vars-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/02-the-component-script-01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/02-the-component-script-01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/02-the-component-script-01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/02-the-component-script-01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/03-the-component-template-01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/03-the-component-template-01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/03-the-component-template-01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/03-the-component-template-01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/03-the-component-template-01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/03-the-component-template-01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-02-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-02-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-02-no-undef-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-02-no-undef-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-02-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-02-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-02-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-02-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-03-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-03-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-03-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-03-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-03-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-03-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-04-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-04-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-04-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-04-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-04-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/04-dynamic-jsx-expressions-04-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-01-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-01-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-02-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-02-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-02-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-02-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-02-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-02-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-03-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-03-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-03-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-03-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-03-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-03-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-03-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/05-component-props-03-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-01-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-01-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-02-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-02-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-02-no-undef-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-02-no-undef-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-02-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-02-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-02-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-02-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-03-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-03-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-03-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-03-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-03-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-03-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-03-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-03-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-04-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-04-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-04-no-undef-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-04-no-undef-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-04-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-04-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-04-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-04-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-05-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-05-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-05-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-05-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-05-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-05-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-05-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/06-slots-05-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/07-css-styles-01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/07-css-styles-01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/07-css-styles-01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/07-css-styles-01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/07-css-styles-01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/07-css-styles-01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/08-client-side-scripts-01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/08-client-side-scripts-01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/08-client-side-scripts-01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/08-client-side-scripts-01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/08-client-side-scripts-01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/08-client-side-scripts-01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/08-client-side-scripts-02-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/08-client-side-scripts-02-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/08-client-side-scripts-02-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/08-client-side-scripts-02-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/08-client-side-scripts-02-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/08-client-side-scripts-02-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/08-client-side-scripts-03-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/08-client-side-scripts-03-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/08-client-side-scripts-03-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/08-client-side-scripts-03-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-components/08-client-side-scripts-03-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-components/08-client-side-scripts-03-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-pages/01-page-html-01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-pages/01-page-html-01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-pages/01-page-html-01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-pages/01-page-html-01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-pages/01-page-html-01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-pages/01-page-html-01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-pages/02-leveraging-page-layouts-01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-pages/02-leveraging-page-layouts-01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-pages/02-leveraging-page-layouts-01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-pages/02-leveraging-page-layouts-01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/astro-pages/02-leveraging-page-layouts-01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/astro-pages/02-leveraging-page-layouts-01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/layouts/01-nesting-layouts-01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/layouts/01-nesting-layouts-01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/layouts/01-nesting-layouts-01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/layouts/01-nesting-layouts-01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/layouts/01-nesting-layouts-01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/layouts/01-nesting-layouts-01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/layouts/01-nesting-layouts-01-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/layouts/01-nesting-layouts-01-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/layouts/01-sample-layout-01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/layouts/01-sample-layout-01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/layouts/01-sample-layout-01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/layouts/01-sample-layout-01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/layouts/01-sample-layout-01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/layouts/01-sample-layout-01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/layouts/01-sample-layout-02-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/layouts/01-sample-layout-02-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/layouts/01-sample-layout-02-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/layouts/01-sample-layout-02-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/core-concepts/layouts/01-sample-layout-02-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/core-concepts/layouts/01-sample-layout-02-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/doctype-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/doctype-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/doctype-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/doctype-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/doctype-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/doctype-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/doctype-v4-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/doctype-v4-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/doctype-v4-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/doctype-v4-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/doctype-v4-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/doctype-v4-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/doctype-with-script1-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/doctype-with-script1-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/doctype-with-script1-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/doctype-with-script1-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/doctype-with-script1-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/doctype-with-script1-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/doctype-with-script1-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/doctype-with-script1-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/empty-input.astro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/empty-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/empty-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/empty-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/empty-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/empty2-input.astro: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | 4 | --- 5 | -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/empty2-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/empty2-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/empty2-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/empty2-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/escape-bug-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/escape-bug-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/escape-bug-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/escape-bug-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/escape-bug-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/escape-bug-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/escape-bug-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/escape-bug-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/escape-bug02-input.astro: -------------------------------------------------------------------------------- 1 | {String("\n")} 2 | -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/escape-bug02-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/escape-bug02-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/escape-bug02-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/escape-bug02-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/expression-text01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/expression-text01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/expression-text01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/expression-text01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/expression-text01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/expression-text01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/expression-text01-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/expression-text01-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/fragment-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/fragment-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/fragment-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/fragment-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/fragment-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/fragment-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/fragment-with-expression01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/fragment-with-expression01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/fragment-with-expression01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/fragment-with-expression01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/fragment-with-expression01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/fragment-with-expression01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/fragment-with-expression01-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/fragment-with-expression01-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/fragment-with-expression02-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/fragment-with-expression02-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/fragment-with-expression02-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/fragment-with-expression02-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/fragment-with-expression02-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/fragment-with-expression02-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/fragment-with-expression02-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/fragment-with-expression02-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/fragment-with-expression03-array-map-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/fragment-with-expression03-array-map-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/fragment-with-expression03-array-map-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/fragment-with-expression03-array-map-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/fragment-with-expression03-array-map-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/fragment-with-expression03-array-map-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/frontmatter-after-comment-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/frontmatter-after-comment-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/frontmatter-after-comment-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/frontmatter-after-comment-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/frontmatter-after-comment-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/frontmatter-after-comment-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/frontmatter-after-comment-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/frontmatter-after-comment-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/frontmatter-after-doctype-with-script-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/frontmatter-after-doctype-with-script-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/frontmatter-after-doctype-with-script-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/frontmatter-after-doctype-with-script-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/frontmatter-after-doctype-with-script-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/frontmatter-after-doctype-with-script-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/frontmatter-after-doctype-with-script-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/frontmatter-after-doctype-with-script-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/frontmatter-after-doctype-with-script02-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/frontmatter-after-doctype-with-script02-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/frontmatter-after-doctype-with-script02-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/frontmatter-after-doctype-with-script02-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/frontmatter-after-doctype-with-script02-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/frontmatter-after-doctype-with-script02-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/frontmatter-after-doctype-with-script02-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/frontmatter-after-doctype-with-script02-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/frontmatter1-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/frontmatter1-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/frontmatter1-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/frontmatter1-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/frontmatter1-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/frontmatter1-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/frontmatter1-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/frontmatter1-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/frontmatter2-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/frontmatter2-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/frontmatter2-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/frontmatter2-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/frontmatter2-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/frontmatter2-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/frontmatter2-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/frontmatter2-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/guides/debugging/astro-debug-component01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/guides/debugging/astro-debug-component01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/guides/debugging/astro-debug-component01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/guides/debugging/astro-debug-component01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/guides/debugging/astro-debug-component01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/guides/debugging/astro-debug-component01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/guides/debugging/astro-debug-component02-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/guides/debugging/astro-debug-component02-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/guides/debugging/astro-debug-component02-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/guides/debugging/astro-debug-component02-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/guides/debugging/astro-debug-component02-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/guides/debugging/astro-debug-component02-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-element01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-element01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-element01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-element01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-element01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-element01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-element02-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-element02-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-element02-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-element02-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-element02-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-element02-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-element03-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-element03-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-element03-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-element03-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-element03-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-element03-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-element04-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-element04-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-element04-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-element04-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-element04-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-element04-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-element05-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-element05-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-element05-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-element05-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-element05-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-element05-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-entity01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-entity01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-entity01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-entity01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-entity01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-entity01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-entity02-single-quote-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-entity02-single-quote-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-entity02-single-quote-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-entity02-single-quote-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-entity02-single-quote-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-entity02-single-quote-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-entity03-unquote-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-entity03-unquote-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-entity03-unquote-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-entity03-unquote-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-entity03-unquote-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-entity03-unquote-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-entry04-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-entry04-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-entry04-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-entry04-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/html-entry04-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/html-entry04-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/import-loc-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/import-loc-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/import-loc-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/import-loc-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/import-loc-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/import-loc-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/import-loc-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/import-loc-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/import-loc2-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/import-loc2-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/import-loc2-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/import-loc2-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/import-loc2-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/import-loc2-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/is-raw-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/is-raw-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/is-raw-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/is-raw-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/is-raw-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/is-raw-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/js-jsx01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/js-jsx01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/js-jsx01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/js-jsx01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/js-jsx01-requirements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/js-jsx01-requirements.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/js-jsx01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/js-jsx01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/js-jsx02-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/js-jsx02-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/js-jsx02-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/js-jsx02-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/js-jsx02-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/js-jsx02-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/js-test01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/js-test01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/js-test01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/js-test01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/js-test01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/js-test01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/js-test01-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/js-test01-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/my-astro-site/Logo-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/my-astro-site/Logo-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/my-astro-site/Logo-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/my-astro-site/Logo-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/my-astro-site/Logo-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/my-astro-site/Logo-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/my-astro-site/index-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/my-astro-site/index-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/my-astro-site/index-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/my-astro-site/index-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/my-astro-site/index-prefer-const-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/my-astro-site/index-prefer-const-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/my-astro-site/index-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/my-astro-site/index-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/omit-end-tag-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/omit-end-tag-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/omit-end-tag-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/omit-end-tag-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/omit-end-tag-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/omit-end-tag-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/play/page-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/play/page-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/play/page-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/play/page-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/play/page-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/play/page-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-02-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-02-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-02-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-02-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-02-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-02-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-02-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-02-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-03-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-03-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-03-no-undef-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-03-no-undef-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-03-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-03-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-03-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-03-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-04-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-04-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-04-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-04-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-04-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-04-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-04-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/01-common-directives-04-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-02-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-02-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-02-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-02-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-02-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-02-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-03-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-03-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-03-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-03-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-03-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-03-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-04-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-04-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-04-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-04-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-04-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-04-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-05-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-05-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-05-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-05-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-05-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/02-client-directives-05-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/03-script-and-style-directives-01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/03-script-and-style-directives-01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/03-script-and-style-directives-01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/03-script-and-style-directives-01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/03-script-and-style-directives-01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/03-script-and-style-directives-01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/03-script-and-style-directives-02-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/03-script-and-style-directives-02-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/03-script-and-style-directives-02-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/03-script-and-style-directives-02-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/03-script-and-style-directives-02-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/03-script-and-style-directives-02-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/03-script-and-style-directives-03-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/03-script-and-style-directives-03-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/03-script-and-style-directives-03-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/03-script-and-style-directives-03-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/03-script-and-style-directives-03-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/03-script-and-style-directives-03-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/04-advanced-directives-01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/04-advanced-directives-01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/04-advanced-directives-01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/04-advanced-directives-01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/reference/directives-reference/04-advanced-directives-01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/reference/directives-reference/04-advanced-directives-01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/self-closing-tag-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/self-closing-tag-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/self-closing-tag-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/self-closing-tag-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/self-closing-tag-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/self-closing-tag-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/self-closing-tag02-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/self-closing-tag02-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/self-closing-tag02-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/self-closing-tag02-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/self-closing-tag02-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/self-closing-tag02-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/style-tag-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/style-tag-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/style-tag-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/style-tag-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/style-tag-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/style-tag-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/table-with-each01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/table-with-each01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/table-with-each01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/table-with-each01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/table-with-each01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/table-with-each01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/template-syntaxes/shorthand-atrribute-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/template-syntaxes/shorthand-atrribute-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/template-syntaxes/shorthand-atrribute-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/template-syntaxes/shorthand-atrribute-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/template-syntaxes/shorthand-atrribute-prefer-const-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/template-syntaxes/shorthand-atrribute-prefer-const-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/template-syntaxes/shorthand-atrribute-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/template-syntaxes/shorthand-atrribute-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/template-syntaxes/spread-atrribute-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/template-syntaxes/spread-atrribute-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/template-syntaxes/spread-atrribute-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/template-syntaxes/spread-atrribute-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/template-syntaxes/spread-atrribute-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/template-syntaxes/spread-atrribute-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/template-syntaxes/spread-atrribute-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/template-syntaxes/spread-atrribute-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/template-syntaxes/template-literal-atrribute-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/template-syntaxes/template-literal-atrribute-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/template-syntaxes/template-literal-atrribute-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/template-syntaxes/template-literal-atrribute-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/template-syntaxes/template-literal-atrribute-prefer-const-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/template-syntaxes/template-literal-atrribute-prefer-const-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/template-syntaxes/template-literal-atrribute-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/template-syntaxes/template-literal-atrribute-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/ts-astro-type01-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/ts-astro-type01-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/ts-astro-type01-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/ts-astro-type01-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/ts-astro-type01-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/ts-astro-type01-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/ts-astro-type01-type-output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/ts-astro-type01-type-output.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/ts-astro-type02-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/ts-astro-type02-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/ts-astro-type02-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/ts-astro-type02-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/ts-astro-type02-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/ts-astro-type02-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/ts-astro-type02-type-output.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/ts-astro-type02-type-output.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/tsconfig.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/astro.build/src/components/ArrowLink-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/astro.build/src/components/ArrowLink-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/astro.build/src/components/ArrowLink-no-unused-vars-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/astro.build/src/components/ArrowLink-no-unused-vars-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/astro.build/src/components/ArrowLink-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/astro.build/src/components/ArrowLink-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/astro.build/src/components/ArrowLink-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/astro.build/src/components/ArrowLink-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/astro.build/src/components/Search-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/astro.build/src/components/Search-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/astro.build/src/components/Search-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/astro.build/src/components/Search-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/astro.build/src/components/Search-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/astro.build/src/components/Search-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/astro.build/src/components/Search-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/astro.build/src/components/Search-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/astro.build/src/components/landing/DemoTTI-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/astro.build/src/components/landing/DemoTTI-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/astro.build/src/components/landing/DemoTTI-no-undef-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/astro.build/src/components/landing/DemoTTI-no-undef-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/astro.build/src/components/landing/DemoTTI-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/astro.build/src/components/landing/DemoTTI-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/astro.build/src/components/landing/DemoTTI-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/astro.build/src/components/landing/DemoTTI-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/astro.build/src/components/landing/Sponsors-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/astro.build/src/components/landing/Sponsors-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/astro.build/src/components/landing/Sponsors-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/astro.build/src/components/landing/Sponsors-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/astro.build/src/components/landing/Sponsors-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/astro.build/src/components/landing/Sponsors-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/astro.build/src/components/landing/Sponsors-semi-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/astro.build/src/components/landing/Sponsors-semi-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/astro.build/src/layouts/Base-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/astro.build/src/layouts/Base-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/astro.build/src/layouts/Base-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/astro.build/src/layouts/Base-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/astro.build/src/layouts/Base-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/astro.build/src/layouts/Base-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/astro.build/src/layouts/Base-space-infix-ops-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/astro.build/src/layouts/Base-space-infix-ops-result.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/docs/src/pages/lighthouse/11ty-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/docs/src/pages/lighthouse/11ty-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/docs/src/pages/lighthouse/11ty-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/docs/src/pages/lighthouse/11ty-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/withastro/docs/src/pages/lighthouse/11ty-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/withastro/docs/src/pages/lighthouse/11ty-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/without-frontmatter-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/without-frontmatter-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/without-frontmatter-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/without-frontmatter-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/ast/without-frontmatter-scope-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/ast/without-frontmatter-scope-output.json -------------------------------------------------------------------------------- /tests/fixtures/parser/error/error-input.astro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/error/error-input.astro -------------------------------------------------------------------------------- /tests/fixtures/parser/error/error-output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/parser/error/error-output.json -------------------------------------------------------------------------------- /tests/fixtures/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/fixtures/tsconfig.test.json -------------------------------------------------------------------------------- /tests/src/integrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/src/integrations.ts -------------------------------------------------------------------------------- /tests/src/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/src/meta.ts -------------------------------------------------------------------------------- /tests/src/parser/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/src/parser/error.ts -------------------------------------------------------------------------------- /tests/src/parser/eslint-rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/src/parser/eslint-rules.ts -------------------------------------------------------------------------------- /tests/src/parser/eslint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/src/parser/eslint.ts -------------------------------------------------------------------------------- /tests/src/parser/parser-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/src/parser/parser-options.ts -------------------------------------------------------------------------------- /tests/src/parser/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/src/parser/parser.ts -------------------------------------------------------------------------------- /tests/src/parser/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/src/parser/test-utils.ts -------------------------------------------------------------------------------- /tests/src/parser/ts-vars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tests/src/parser/ts-vars.ts -------------------------------------------------------------------------------- /tools/parser-test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tools/parser-test.ts -------------------------------------------------------------------------------- /tools/update-fixtures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tools/update-fixtures.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ota-meshi/astro-eslint-parser/HEAD/tsup.config.ts --------------------------------------------------------------------------------