├── .github └── workflows │ └── dispatch.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── src ├── README.md └── lint.ts └── test └── test-lint.ts /.github/workflows/dispatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lint/HEAD/.github/workflows/dispatch.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lint/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lint/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lint/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lint/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lint/HEAD/package.json -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lint/HEAD/src/README.md -------------------------------------------------------------------------------- /src/lint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lint/HEAD/src/lint.ts -------------------------------------------------------------------------------- /test/test-lint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codemirror/lint/HEAD/test/test-lint.ts --------------------------------------------------------------------------------