├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── Bug_report.md │ ├── Feature_request.md │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md ├── auto_assign.yml ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── dependabot.yaml │ ├── dependency-review.yml │ ├── lock.yml │ ├── main.yml │ ├── more-info.yaml │ ├── on-open.yml │ └── stale.yml ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .vscode ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── THIRDPARTY.md ├── icon.png ├── package-json-schema.json ├── package.json ├── package.nls.json ├── package.nls.zh-cn.json ├── package.nls.zh-tw.json ├── scripts ├── clean.js └── version.js ├── src ├── BrowserModuleResolver.ts ├── Files.ts ├── LoggingService.ts ├── ModuleLoader.ts ├── ModuleResolver.ts ├── PrettierEditProvider.ts ├── PrettierEditService.ts ├── PrettierInstance.ts ├── PrettierMainThreadInstance.ts ├── PrettierWorkerInstance.ts ├── StatusBar.ts ├── TemplateService.ts ├── commands.ts ├── extension.ts ├── languageFilters.ts ├── message.ts ├── test │ ├── runTests.ts │ └── suite │ │ ├── ModuleResolver.test.ts │ │ ├── config.test.ts │ │ ├── format.test.ts │ │ ├── formatRanges.test.ts │ │ ├── ignore.test.ts │ │ ├── index.ts │ │ ├── module.test.ts │ │ ├── plugin-tailwindcss.test.ts │ │ ├── plugins.test.ts │ │ ├── v3-plugin-override.test.ts │ │ ├── v3-plugins.test.ts │ │ └── v3.test.ts ├── types.d.ts ├── util.ts └── worker │ └── prettier-instance-worker.js ├── test-fixtures ├── .do-not-use-prettier-vscode-root ├── config │ ├── customextension │ │ ├── .prettierrc │ │ ├── test.abc │ │ └── test.result.abc │ ├── editorconfig │ │ ├── .editorconfig │ │ ├── test.js │ │ └── test.result.js │ ├── hbsfile │ │ ├── prettier.config.js │ │ ├── test.hbs │ │ └── test.result.hbs │ ├── jsconfigfile │ │ ├── prettier.config.js │ │ ├── test.js │ │ └── test.result.js │ ├── jsfile │ │ ├── .prettierrc.js │ │ ├── test.js │ │ └── test.result.js │ ├── rcfile │ │ ├── .prettierrc │ │ ├── test.js │ │ └── test.result.js │ └── vscodeconfig │ │ ├── test.js │ │ └── test.result.js ├── explicit-dep │ ├── implicit-dep │ │ ├── index.js │ │ ├── index.result.js │ │ ├── package.json │ │ └── yarn.lock │ ├── index.js │ ├── index.result.js │ ├── package.json │ └── yarn.lock ├── module-dep │ ├── package.json │ └── yarn.lock ├── module-plugin-dep │ ├── .do-not-use-prettier-vscode-root │ ├── package.json │ └── yarn.lock ├── module-plugin │ ├── .do-not-use-prettier-vscode-root │ ├── .prettierrc │ ├── index.js │ ├── index.result.js │ ├── package.json │ └── yarn.lock ├── module │ ├── .do-not-use-prettier-vscode-root │ ├── .prettierrc │ ├── index.js │ ├── index.result.js │ ├── package.json │ └── yarn.lock ├── no-dep │ ├── .do-not-use-prettier-vscode-root │ ├── .prettierrc │ ├── index.js │ ├── index.result.js │ └── package.json ├── outdated │ ├── package.json │ ├── ugly.js │ └── yarn.lock ├── plugin-tailwindcss │ ├── index.js │ ├── index.result.js │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ └── tailwind.config.js ├── plugins-pnpm │ ├── .npmrc │ ├── .prettierrc │ ├── index.js │ ├── index.php │ ├── index.result.js │ ├── index.result.php │ ├── package.json │ ├── pnpm-lock.yaml │ └── unused-module.js ├── plugins │ ├── .prettierrc │ ├── index.php │ ├── index.result.php │ ├── package.json │ └── yarn.lock ├── project │ ├── .prettierignore │ ├── .prettierrc │ ├── fileToIgnore.js │ ├── formatTest │ │ ├── htmlWithLiterals.html │ │ ├── lwc.html │ │ ├── package.json │ │ ├── ugly.css │ │ ├── ugly.graphql │ │ ├── ugly.hbs │ │ ├── ugly.html │ │ ├── ugly.js │ │ ├── ugly.json │ │ ├── ugly.jsonc │ │ ├── ugly.scss │ │ ├── ugly.ts │ │ ├── ugly.tsx │ │ └── ugly.vue │ ├── ignoreMe │ │ └── subdir │ │ │ └── index.js │ └── ignoreMe2 │ │ └── index.js ├── specific-version │ ├── package.json │ ├── ugly.js │ └── yarn.lock ├── test.code-workspace ├── v3-plugin-override │ ├── .prettierrc.mjs │ ├── index.js │ ├── index.result.js │ ├── package.json │ ├── prettier-plugin-override │ │ ├── index.js │ │ └── package.json │ └── yarn.lock ├── v3-plugins │ ├── .prettierrc │ ├── index.result.xml │ ├── index.xml │ ├── package-lock.json │ └── package.json ├── v3 │ ├── .prettierrc.mjs │ ├── index.result.ts │ ├── index.ts │ ├── package.json │ └── yarn.lock └── workspace │ └── .vscode │ └── settings.json ├── tsconfig.json ├── webpack.config.js └── yarn.lock /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /src/worker/*.js 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.github/workflows/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/dependency-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.github/workflows/dependency-review.yml -------------------------------------------------------------------------------- /.github/workflows/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.github/workflows/lock.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/more-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.github/workflows/more-info.yaml -------------------------------------------------------------------------------- /.github/workflows/on-open.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.github/workflows/on-open.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn lint-staged -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 2 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/README.md -------------------------------------------------------------------------------- /THIRDPARTY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/THIRDPARTY.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/icon.png -------------------------------------------------------------------------------- /package-json-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/package-json-schema.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/package.json -------------------------------------------------------------------------------- /package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/package.nls.json -------------------------------------------------------------------------------- /package.nls.zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/package.nls.zh-cn.json -------------------------------------------------------------------------------- /package.nls.zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/package.nls.zh-tw.json -------------------------------------------------------------------------------- /scripts/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/scripts/clean.js -------------------------------------------------------------------------------- /scripts/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/scripts/version.js -------------------------------------------------------------------------------- /src/BrowserModuleResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/BrowserModuleResolver.ts -------------------------------------------------------------------------------- /src/Files.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/Files.ts -------------------------------------------------------------------------------- /src/LoggingService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/LoggingService.ts -------------------------------------------------------------------------------- /src/ModuleLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/ModuleLoader.ts -------------------------------------------------------------------------------- /src/ModuleResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/ModuleResolver.ts -------------------------------------------------------------------------------- /src/PrettierEditProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/PrettierEditProvider.ts -------------------------------------------------------------------------------- /src/PrettierEditService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/PrettierEditService.ts -------------------------------------------------------------------------------- /src/PrettierInstance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/PrettierInstance.ts -------------------------------------------------------------------------------- /src/PrettierMainThreadInstance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/PrettierMainThreadInstance.ts -------------------------------------------------------------------------------- /src/PrettierWorkerInstance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/PrettierWorkerInstance.ts -------------------------------------------------------------------------------- /src/StatusBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/StatusBar.ts -------------------------------------------------------------------------------- /src/TemplateService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/TemplateService.ts -------------------------------------------------------------------------------- /src/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/commands.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/languageFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/languageFilters.ts -------------------------------------------------------------------------------- /src/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/message.ts -------------------------------------------------------------------------------- /src/test/runTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/test/runTests.ts -------------------------------------------------------------------------------- /src/test/suite/ModuleResolver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/test/suite/ModuleResolver.test.ts -------------------------------------------------------------------------------- /src/test/suite/config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/test/suite/config.test.ts -------------------------------------------------------------------------------- /src/test/suite/format.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/test/suite/format.test.ts -------------------------------------------------------------------------------- /src/test/suite/formatRanges.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/test/suite/formatRanges.test.ts -------------------------------------------------------------------------------- /src/test/suite/ignore.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/test/suite/ignore.test.ts -------------------------------------------------------------------------------- /src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/test/suite/index.ts -------------------------------------------------------------------------------- /src/test/suite/module.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/test/suite/module.test.ts -------------------------------------------------------------------------------- /src/test/suite/plugin-tailwindcss.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/test/suite/plugin-tailwindcss.test.ts -------------------------------------------------------------------------------- /src/test/suite/plugins.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/test/suite/plugins.test.ts -------------------------------------------------------------------------------- /src/test/suite/v3-plugin-override.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/test/suite/v3-plugin-override.test.ts -------------------------------------------------------------------------------- /src/test/suite/v3-plugins.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/test/suite/v3-plugins.test.ts -------------------------------------------------------------------------------- /src/test/suite/v3.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/test/suite/v3.test.ts -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/util.ts -------------------------------------------------------------------------------- /src/worker/prettier-instance-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/src/worker/prettier-instance-worker.js -------------------------------------------------------------------------------- /test-fixtures/.do-not-use-prettier-vscode-root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-fixtures/config/customextension/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/config/customextension/.prettierrc -------------------------------------------------------------------------------- /test-fixtures/config/customextension/test.abc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/config/customextension/test.abc -------------------------------------------------------------------------------- /test-fixtures/config/customextension/test.result.abc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/config/customextension/test.result.abc -------------------------------------------------------------------------------- /test-fixtures/config/editorconfig/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/config/editorconfig/.editorconfig -------------------------------------------------------------------------------- /test-fixtures/config/editorconfig/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/config/editorconfig/test.js -------------------------------------------------------------------------------- /test-fixtures/config/editorconfig/test.result.js: -------------------------------------------------------------------------------- 1 | function foo() { 2 | console.log("test"); 3 | } 4 | -------------------------------------------------------------------------------- /test-fixtures/config/hbsfile/prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/config/hbsfile/prettier.config.js -------------------------------------------------------------------------------- /test-fixtures/config/hbsfile/test.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/config/hbsfile/test.hbs -------------------------------------------------------------------------------- /test-fixtures/config/hbsfile/test.result.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/config/hbsfile/test.result.hbs -------------------------------------------------------------------------------- /test-fixtures/config/jsconfigfile/prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | tabWidth: 3 3 | }; 4 | -------------------------------------------------------------------------------- /test-fixtures/config/jsconfigfile/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/config/jsconfigfile/test.js -------------------------------------------------------------------------------- /test-fixtures/config/jsconfigfile/test.result.js: -------------------------------------------------------------------------------- 1 | function foo() { 2 | console.log("test"); 3 | } 4 | -------------------------------------------------------------------------------- /test-fixtures/config/jsfile/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | tabWidth: 3 3 | }; 4 | -------------------------------------------------------------------------------- /test-fixtures/config/jsfile/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/config/jsfile/test.js -------------------------------------------------------------------------------- /test-fixtures/config/jsfile/test.result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/config/jsfile/test.result.js -------------------------------------------------------------------------------- /test-fixtures/config/rcfile/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 3 3 | } 4 | -------------------------------------------------------------------------------- /test-fixtures/config/rcfile/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/config/rcfile/test.js -------------------------------------------------------------------------------- /test-fixtures/config/rcfile/test.result.js: -------------------------------------------------------------------------------- 1 | function foo() { 2 | console.log("test"); 3 | } 4 | -------------------------------------------------------------------------------- /test-fixtures/config/vscodeconfig/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/config/vscodeconfig/test.js -------------------------------------------------------------------------------- /test-fixtures/config/vscodeconfig/test.result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/config/vscodeconfig/test.result.js -------------------------------------------------------------------------------- /test-fixtures/explicit-dep/implicit-dep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/explicit-dep/implicit-dep/index.js -------------------------------------------------------------------------------- /test-fixtures/explicit-dep/implicit-dep/index.result.js: -------------------------------------------------------------------------------- 1 | function ugly(a, b, c) { 2 | return a + b; 3 | } 4 | -------------------------------------------------------------------------------- /test-fixtures/explicit-dep/implicit-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/explicit-dep/implicit-dep/package.json -------------------------------------------------------------------------------- /test-fixtures/explicit-dep/implicit-dep/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/explicit-dep/implicit-dep/yarn.lock -------------------------------------------------------------------------------- /test-fixtures/explicit-dep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/explicit-dep/index.js -------------------------------------------------------------------------------- /test-fixtures/explicit-dep/index.result.js: -------------------------------------------------------------------------------- 1 | function ugly(a, b, c) { 2 | return a + b; 3 | } 4 | -------------------------------------------------------------------------------- /test-fixtures/explicit-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/explicit-dep/package.json -------------------------------------------------------------------------------- /test-fixtures/explicit-dep/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/explicit-dep/yarn.lock -------------------------------------------------------------------------------- /test-fixtures/module-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/module-dep/package.json -------------------------------------------------------------------------------- /test-fixtures/module-dep/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/module-dep/yarn.lock -------------------------------------------------------------------------------- /test-fixtures/module-plugin-dep/.do-not-use-prettier-vscode-root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-fixtures/module-plugin-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/module-plugin-dep/package.json -------------------------------------------------------------------------------- /test-fixtures/module-plugin-dep/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/module-plugin-dep/yarn.lock -------------------------------------------------------------------------------- /test-fixtures/module-plugin/.do-not-use-prettier-vscode-root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-fixtures/module-plugin/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 2 3 | } -------------------------------------------------------------------------------- /test-fixtures/module-plugin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/module-plugin/index.js -------------------------------------------------------------------------------- /test-fixtures/module-plugin/index.result.js: -------------------------------------------------------------------------------- 1 | function ugly(a, b, c) { 2 | return a + b; 3 | } 4 | -------------------------------------------------------------------------------- /test-fixtures/module-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/module-plugin/package.json -------------------------------------------------------------------------------- /test-fixtures/module-plugin/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/module-plugin/yarn.lock -------------------------------------------------------------------------------- /test-fixtures/module/.do-not-use-prettier-vscode-root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-fixtures/module/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 2 3 | } -------------------------------------------------------------------------------- /test-fixtures/module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/module/index.js -------------------------------------------------------------------------------- /test-fixtures/module/index.result.js: -------------------------------------------------------------------------------- 1 | function ugly(a, b, c) { 2 | return a + b; 3 | } 4 | -------------------------------------------------------------------------------- /test-fixtures/module/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/module/package.json -------------------------------------------------------------------------------- /test-fixtures/module/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/module/yarn.lock -------------------------------------------------------------------------------- /test-fixtures/no-dep/.do-not-use-prettier-vscode-root: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-fixtures/no-dep/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 2 3 | } -------------------------------------------------------------------------------- /test-fixtures/no-dep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/no-dep/index.js -------------------------------------------------------------------------------- /test-fixtures/no-dep/index.result.js: -------------------------------------------------------------------------------- 1 | function ugly(a, b, c) { 2 | return a + b; 3 | } 4 | -------------------------------------------------------------------------------- /test-fixtures/no-dep/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/no-dep/package.json -------------------------------------------------------------------------------- /test-fixtures/outdated/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/outdated/package.json -------------------------------------------------------------------------------- /test-fixtures/outdated/ugly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/outdated/ugly.js -------------------------------------------------------------------------------- /test-fixtures/outdated/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/outdated/yarn.lock -------------------------------------------------------------------------------- /test-fixtures/plugin-tailwindcss/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/plugin-tailwindcss/index.js -------------------------------------------------------------------------------- /test-fixtures/plugin-tailwindcss/index.result.js: -------------------------------------------------------------------------------- 1 | function App() { 2 | return
; 3 | } 4 | -------------------------------------------------------------------------------- /test-fixtures/plugin-tailwindcss/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/plugin-tailwindcss/package-lock.json -------------------------------------------------------------------------------- /test-fixtures/plugin-tailwindcss/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/plugin-tailwindcss/package.json -------------------------------------------------------------------------------- /test-fixtures/plugin-tailwindcss/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/plugin-tailwindcss/postcss.config.js -------------------------------------------------------------------------------- /test-fixtures/plugin-tailwindcss/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/plugin-tailwindcss/tailwind.config.js -------------------------------------------------------------------------------- /test-fixtures/plugins-pnpm/.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/plugins-pnpm/.npmrc -------------------------------------------------------------------------------- /test-fixtures/plugins-pnpm/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/plugins-pnpm/.prettierrc -------------------------------------------------------------------------------- /test-fixtures/plugins-pnpm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/plugins-pnpm/index.js -------------------------------------------------------------------------------- /test-fixtures/plugins-pnpm/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/plugins-pnpm/index.php -------------------------------------------------------------------------------- /test-fixtures/plugins-pnpm/index.result.js: -------------------------------------------------------------------------------- 1 | import "prettier"; 2 | -------------------------------------------------------------------------------- /test-fixtures/plugins-pnpm/index.result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/plugins-pnpm/index.result.php -------------------------------------------------------------------------------- /test-fixtures/plugins-pnpm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/plugins-pnpm/package.json -------------------------------------------------------------------------------- /test-fixtures/plugins-pnpm/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/plugins-pnpm/pnpm-lock.yaml -------------------------------------------------------------------------------- /test-fixtures/plugins-pnpm/unused-module.js: -------------------------------------------------------------------------------- 1 | export const a = 1 2 | -------------------------------------------------------------------------------- /test-fixtures/plugins/.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 2 3 | } -------------------------------------------------------------------------------- /test-fixtures/plugins/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/plugins/index.php -------------------------------------------------------------------------------- /test-fixtures/plugins/index.result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/plugins/index.result.php -------------------------------------------------------------------------------- /test-fixtures/plugins/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/plugins/package.json -------------------------------------------------------------------------------- /test-fixtures/plugins/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/plugins/yarn.lock -------------------------------------------------------------------------------- /test-fixtures/project/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/project/.prettierignore -------------------------------------------------------------------------------- /test-fixtures/project/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/project/.prettierrc -------------------------------------------------------------------------------- /test-fixtures/project/fileToIgnore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/project/fileToIgnore.js -------------------------------------------------------------------------------- /test-fixtures/project/formatTest/htmlWithLiterals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/project/formatTest/htmlWithLiterals.html -------------------------------------------------------------------------------- /test-fixtures/project/formatTest/lwc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/project/formatTest/lwc.html -------------------------------------------------------------------------------- /test-fixtures/project/formatTest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/project/formatTest/package.json -------------------------------------------------------------------------------- /test-fixtures/project/formatTest/ugly.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/project/formatTest/ugly.css -------------------------------------------------------------------------------- /test-fixtures/project/formatTest/ugly.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/project/formatTest/ugly.graphql -------------------------------------------------------------------------------- /test-fixtures/project/formatTest/ugly.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/project/formatTest/ugly.hbs -------------------------------------------------------------------------------- /test-fixtures/project/formatTest/ugly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/project/formatTest/ugly.html -------------------------------------------------------------------------------- /test-fixtures/project/formatTest/ugly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/project/formatTest/ugly.js -------------------------------------------------------------------------------- /test-fixtures/project/formatTest/ugly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/project/formatTest/ugly.json -------------------------------------------------------------------------------- /test-fixtures/project/formatTest/ugly.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/project/formatTest/ugly.jsonc -------------------------------------------------------------------------------- /test-fixtures/project/formatTest/ugly.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/project/formatTest/ugly.scss -------------------------------------------------------------------------------- /test-fixtures/project/formatTest/ugly.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/project/formatTest/ugly.ts -------------------------------------------------------------------------------- /test-fixtures/project/formatTest/ugly.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/project/formatTest/ugly.tsx -------------------------------------------------------------------------------- /test-fixtures/project/formatTest/ugly.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/project/formatTest/ugly.vue -------------------------------------------------------------------------------- /test-fixtures/project/ignoreMe/subdir/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/project/ignoreMe/subdir/index.js -------------------------------------------------------------------------------- /test-fixtures/project/ignoreMe2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/project/ignoreMe2/index.js -------------------------------------------------------------------------------- /test-fixtures/specific-version/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/specific-version/package.json -------------------------------------------------------------------------------- /test-fixtures/specific-version/ugly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/specific-version/ugly.js -------------------------------------------------------------------------------- /test-fixtures/specific-version/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/specific-version/yarn.lock -------------------------------------------------------------------------------- /test-fixtures/test.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/test.code-workspace -------------------------------------------------------------------------------- /test-fixtures/v3-plugin-override/.prettierrc.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/v3-plugin-override/.prettierrc.mjs -------------------------------------------------------------------------------- /test-fixtures/v3-plugin-override/index.js: -------------------------------------------------------------------------------- 1 | function foo() { 2 | console.log("HELLO~"); 3 | } 4 | -------------------------------------------------------------------------------- /test-fixtures/v3-plugin-override/index.result.js: -------------------------------------------------------------------------------- 1 | fake format 2 | -------------------------------------------------------------------------------- /test-fixtures/v3-plugin-override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/v3-plugin-override/package.json -------------------------------------------------------------------------------- /test-fixtures/v3-plugin-override/prettier-plugin-override/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/v3-plugin-override/prettier-plugin-override/index.js -------------------------------------------------------------------------------- /test-fixtures/v3-plugin-override/prettier-plugin-override/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/v3-plugin-override/prettier-plugin-override/package.json -------------------------------------------------------------------------------- /test-fixtures/v3-plugin-override/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/v3-plugin-override/yarn.lock -------------------------------------------------------------------------------- /test-fixtures/v3-plugins/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/v3-plugins/.prettierrc -------------------------------------------------------------------------------- /test-fixtures/v3-plugins/index.result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/v3-plugins/index.result.xml -------------------------------------------------------------------------------- /test-fixtures/v3-plugins/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/v3-plugins/index.xml -------------------------------------------------------------------------------- /test-fixtures/v3-plugins/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/v3-plugins/package-lock.json -------------------------------------------------------------------------------- /test-fixtures/v3-plugins/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/v3-plugins/package.json -------------------------------------------------------------------------------- /test-fixtures/v3/.prettierrc.mjs: -------------------------------------------------------------------------------- 1 | export default { 2 | tabWidth: 4, 3 | }; 4 | -------------------------------------------------------------------------------- /test-fixtures/v3/index.result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/v3/index.result.ts -------------------------------------------------------------------------------- /test-fixtures/v3/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/v3/index.ts -------------------------------------------------------------------------------- /test-fixtures/v3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/v3/package.json -------------------------------------------------------------------------------- /test-fixtures/v3/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/v3/yarn.lock -------------------------------------------------------------------------------- /test-fixtures/workspace/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/test-fixtures/workspace/.vscode/settings.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/farhan7reza7/prettier-vscode/HEAD/yarn.lock --------------------------------------------------------------------------------