├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── check-dist.yml │ └── test.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── CODEOWNERS ├── LICENSE ├── README.md ├── __tests__ └── main.test.ts ├── action.yml ├── dart ├── analysis_options.yaml ├── lib │ ├── info.dart │ ├── lint.dart │ └── syntax_error.dart └── pubspec.yaml ├── dist ├── index.js ├── index.js.map ├── licenses.txt └── sourcemap-register.js ├── jest.config.js ├── package.json ├── src ├── dart.ts └── main.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ 4 | jest.config.js 5 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | dist/** -diff linguist-generated=true -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/check-dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/.github/workflows/check-dist.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | lib/ 3 | node_modules/ -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/__tests__/main.test.ts -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/action.yml -------------------------------------------------------------------------------- /dart/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/dart/analysis_options.yaml -------------------------------------------------------------------------------- /dart/lib/info.dart: -------------------------------------------------------------------------------- 1 | void bar() { 2 | final unused = 'foo'; 3 | } 4 | -------------------------------------------------------------------------------- /dart/lib/lint.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/dart/lib/lint.dart -------------------------------------------------------------------------------- /dart/lib/syntax_error.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/dart/lib/syntax_error.dart -------------------------------------------------------------------------------- /dart/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/dart/pubspec.yaml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/dist/licenses.txt -------------------------------------------------------------------------------- /dist/sourcemap-register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/dist/sourcemap-register.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/package.json -------------------------------------------------------------------------------- /src/dart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/src/dart.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/src/main.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/invertase/github-action-dart-analyzer/HEAD/tsconfig.json --------------------------------------------------------------------------------