├── .editorconfig ├── .github ├── dependabot.yaml └── workflows │ ├── ci.yml │ └── dependabot-automerge.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── action.yml ├── dist └── index.js ├── package.json ├── src ├── index.ts ├── release.ts └── shared.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig-checker/action-editorconfig-checker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig-checker/action-editorconfig-checker/HEAD/.github/dependabot.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig-checker/action-editorconfig-checker/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-automerge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig-checker/action-editorconfig-checker/HEAD/.github/workflows/dependabot-automerge.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /dist 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig-checker/action-editorconfig-checker/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig-checker/action-editorconfig-checker/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig-checker/action-editorconfig-checker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig-checker/action-editorconfig-checker/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig-checker/action-editorconfig-checker/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig-checker/action-editorconfig-checker/HEAD/dist/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig-checker/action-editorconfig-checker/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig-checker/action-editorconfig-checker/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/release.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig-checker/action-editorconfig-checker/HEAD/src/release.ts -------------------------------------------------------------------------------- /src/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig-checker/action-editorconfig-checker/HEAD/src/shared.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/editorconfig-checker/action-editorconfig-checker/HEAD/tsconfig.json --------------------------------------------------------------------------------