├── .all-contributorsrc ├── .github ├── dependabot.yml └── workflows │ ├── codacy-analysis.yml │ ├── codeql.yml │ ├── sync-release-version.yml │ ├── test.yml │ └── update-readme.yml ├── .gitignore ├── .whitesource ├── CODE_OF_CONDUCT.md ├── HISTORY.md ├── LICENSE ├── README.md ├── action.yml ├── entrypoint.sh └── test-app ├── .gitignore ├── .nvmrc ├── .prettierrc ├── .stylelintrc.json ├── README.md ├── eslint.config.mjs ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── (test) │ └── page.tsx ├── App.css ├── App.test.tsx ├── App.tsx ├── index.css ├── index.tsx ├── logo.svg ├── react-app-env.d.ts ├── reportWebVitals.ts └── setupTests.ts ├── tsconfig.json └── yarn.lock /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codacy-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/.github/workflows/codacy-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/sync-release-version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/.github/workflows/sync-release-version.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/update-readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/.github/workflows/update-readme.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/.gitignore -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/.whitesource -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/action.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /test-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/.gitignore -------------------------------------------------------------------------------- /test-app/.nvmrc: -------------------------------------------------------------------------------- 1 | v20.12.0 2 | -------------------------------------------------------------------------------- /test-app/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/.prettierrc -------------------------------------------------------------------------------- /test-app/.stylelintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["stylelint-config-standard"] 3 | } 4 | -------------------------------------------------------------------------------- /test-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/README.md -------------------------------------------------------------------------------- /test-app/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/eslint.config.mjs -------------------------------------------------------------------------------- /test-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/package.json -------------------------------------------------------------------------------- /test-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/public/favicon.ico -------------------------------------------------------------------------------- /test-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/public/index.html -------------------------------------------------------------------------------- /test-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/public/logo192.png -------------------------------------------------------------------------------- /test-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/public/logo512.png -------------------------------------------------------------------------------- /test-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/public/manifest.json -------------------------------------------------------------------------------- /test-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/public/robots.txt -------------------------------------------------------------------------------- /test-app/src/(test)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/src/(test)/page.tsx -------------------------------------------------------------------------------- /test-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/src/App.css -------------------------------------------------------------------------------- /test-app/src/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/src/App.test.tsx -------------------------------------------------------------------------------- /test-app/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/src/App.tsx -------------------------------------------------------------------------------- /test-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/src/index.css -------------------------------------------------------------------------------- /test-app/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/src/index.tsx -------------------------------------------------------------------------------- /test-app/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/src/logo.svg -------------------------------------------------------------------------------- /test-app/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | import "react-scripts"; 2 | -------------------------------------------------------------------------------- /test-app/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/src/reportWebVitals.ts -------------------------------------------------------------------------------- /test-app/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/src/setupTests.ts -------------------------------------------------------------------------------- /test-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/tsconfig.json -------------------------------------------------------------------------------- /test-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tj-actions/eslint-changed-files/HEAD/test-app/yarn.lock --------------------------------------------------------------------------------