├── .codeclimate.yml ├── .editorconfig ├── .eslintignore ├── .eslintrc.base.json ├── .eslintrc.yml ├── .github ├── CODEOWNERS ├── release.yml └── workflows │ ├── automerge.yaml │ └── cicd.yml ├── .gitignore ├── .mdlrc ├── .mdlrc.style ├── .reuse └── dep5 ├── .vscode ├── cSpell.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── C-Cpp-FlyLint_icon.png ├── C-Cpp-FlyLint_icon.svg ├── CHANGELOG.md ├── LICENSE ├── LICENSES └── MIT.txt ├── README.md ├── client ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .vscode │ ├── launch.json │ └── tasks.json ├── LICENSE ├── README.md ├── package-lock.json ├── package.json ├── src │ ├── extension.ts │ ├── flylintLanguageClient.ts │ └── stateUtils.ts ├── tsconfig.json └── webpack.config.js ├── code-climate.sh ├── package.json ├── server ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .vscode │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── customInstallServerIntoExtension.js ├── package-lock.json ├── package.json ├── src │ ├── linters │ │ ├── clang.ts │ │ ├── cppcheck.ts │ │ ├── flawfinder.ts │ │ ├── flexelint.ts │ │ ├── linter.ts │ │ ├── lizard.ts │ │ └── pclintplus.ts │ ├── server.ts │ ├── settings.ts │ └── utils.ts ├── tsconfig.json └── webpack.config.js ├── shared.webpack.config.js ├── specs ├── .eslintrc.json ├── debug-console │ ├── colorize.ts │ └── logger.ts ├── index.ts ├── mock-config.ts ├── mock-fs.ts ├── runSpecs.ts ├── setup.ts ├── suite │ ├── fixtures │ │ ├── c_cpp_properties.json │ │ └── c_cpp_properties │ │ │ ├── .vscode │ │ │ ├── c_cpp_properties.json │ │ │ ├── settings.json │ │ │ └── tasks.json │ │ │ ├── c_cpp_properties.c │ │ │ └── inc │ │ │ ├── a │ │ │ ├── aa │ │ │ │ └── .gitkeep │ │ │ ├── bb │ │ │ │ └── .gitkeep │ │ │ └── cc │ │ │ │ └── .gitkeep │ │ │ ├── b │ │ │ ├── aa │ │ │ │ └── .gitkeep │ │ │ ├── bb │ │ │ │ └── .gitkeep │ │ │ └── cc │ │ │ │ └── .gitkeep │ │ │ ├── c │ │ │ ├── aa │ │ │ │ └── .gitkeep │ │ │ ├── bb │ │ │ │ └── .gitkeep │ │ │ └── cc │ │ │ │ └── .gitkeep │ │ │ └── d │ │ │ ├── aa │ │ │ └── .gitkeep │ │ │ ├── bb │ │ │ └── .gitkeep │ │ │ └── cc │ │ │ └── .gitkeep │ ├── linter-clang.spec.ts │ ├── linter-cppcheck.spec.ts │ ├── linter-flawfinder.spec.ts │ ├── linter-flexelint.spec.ts │ ├── linter-lizard.spec.ts │ ├── linter-pclintplus.spec.ts │ ├── linter.spec.ts │ ├── setup-vfs.spec.ts │ ├── unit-c_cpp_properties.spec.ts │ └── unit-path.spec.ts └── tsconfig.json ├── tsconfig.base.json ├── tsconfig.json └── typings.d.ts /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/*{.,-}min.js 2 | -------------------------------------------------------------------------------- /.eslintrc.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/.eslintrc.base.json -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @jbenden 2 | -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/.github/workflows/automerge.yaml -------------------------------------------------------------------------------- /.github/workflows/cicd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/.github/workflows/cicd.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/.gitignore -------------------------------------------------------------------------------- /.mdlrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/.mdlrc -------------------------------------------------------------------------------- /.mdlrc.style: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/.mdlrc.style -------------------------------------------------------------------------------- /.reuse/dep5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/.reuse/dep5 -------------------------------------------------------------------------------- /.vscode/cSpell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/.vscode/cSpell.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/.vscodeignore -------------------------------------------------------------------------------- /C-Cpp-FlyLint_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/C-Cpp-FlyLint_icon.png -------------------------------------------------------------------------------- /C-Cpp-FlyLint_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/C-Cpp-FlyLint_icon.svg -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/README.md -------------------------------------------------------------------------------- /client/.eslintignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules -------------------------------------------------------------------------------- /client/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/client/.eslintrc.json -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/client/.vscode/launch.json -------------------------------------------------------------------------------- /client/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/client/.vscode/tasks.json -------------------------------------------------------------------------------- /client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/client/LICENSE -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/client/README.md -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/client/package.json -------------------------------------------------------------------------------- /client/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/client/src/extension.ts -------------------------------------------------------------------------------- /client/src/flylintLanguageClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/client/src/flylintLanguageClient.ts -------------------------------------------------------------------------------- /client/src/stateUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/client/src/stateUtils.ts -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /client/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/client/webpack.config.js -------------------------------------------------------------------------------- /code-climate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/code-climate.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/package.json -------------------------------------------------------------------------------- /server/.eslintignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules -------------------------------------------------------------------------------- /server/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/server/.eslintrc.json -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/server/.vscode/launch.json -------------------------------------------------------------------------------- /server/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/server/.vscode/settings.json -------------------------------------------------------------------------------- /server/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/server/.vscode/tasks.json -------------------------------------------------------------------------------- /server/customInstallServerIntoExtension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/server/customInstallServerIntoExtension.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/linters/clang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/server/src/linters/clang.ts -------------------------------------------------------------------------------- /server/src/linters/cppcheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/server/src/linters/cppcheck.ts -------------------------------------------------------------------------------- /server/src/linters/flawfinder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/server/src/linters/flawfinder.ts -------------------------------------------------------------------------------- /server/src/linters/flexelint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/server/src/linters/flexelint.ts -------------------------------------------------------------------------------- /server/src/linters/linter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/server/src/linters/linter.ts -------------------------------------------------------------------------------- /server/src/linters/lizard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/server/src/linters/lizard.ts -------------------------------------------------------------------------------- /server/src/linters/pclintplus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/server/src/linters/pclintplus.ts -------------------------------------------------------------------------------- /server/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/server/src/server.ts -------------------------------------------------------------------------------- /server/src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/server/src/settings.ts -------------------------------------------------------------------------------- /server/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/server/src/utils.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /server/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/server/webpack.config.js -------------------------------------------------------------------------------- /shared.webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/shared.webpack.config.js -------------------------------------------------------------------------------- /specs/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/.eslintrc.json -------------------------------------------------------------------------------- /specs/debug-console/colorize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/debug-console/colorize.ts -------------------------------------------------------------------------------- /specs/debug-console/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/debug-console/logger.ts -------------------------------------------------------------------------------- /specs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/index.ts -------------------------------------------------------------------------------- /specs/mock-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/mock-config.ts -------------------------------------------------------------------------------- /specs/mock-fs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/mock-fs.ts -------------------------------------------------------------------------------- /specs/runSpecs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/runSpecs.ts -------------------------------------------------------------------------------- /specs/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/setup.ts -------------------------------------------------------------------------------- /specs/suite/fixtures/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/suite/fixtures/c_cpp_properties.json -------------------------------------------------------------------------------- /specs/suite/fixtures/c_cpp_properties/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/suite/fixtures/c_cpp_properties/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /specs/suite/fixtures/c_cpp_properties/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/suite/fixtures/c_cpp_properties/.vscode/settings.json -------------------------------------------------------------------------------- /specs/suite/fixtures/c_cpp_properties/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/suite/fixtures/c_cpp_properties/.vscode/tasks.json -------------------------------------------------------------------------------- /specs/suite/fixtures/c_cpp_properties/c_cpp_properties.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/suite/fixtures/c_cpp_properties/c_cpp_properties.c -------------------------------------------------------------------------------- /specs/suite/fixtures/c_cpp_properties/inc/a/aa/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs/suite/fixtures/c_cpp_properties/inc/a/bb/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs/suite/fixtures/c_cpp_properties/inc/a/cc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs/suite/fixtures/c_cpp_properties/inc/b/aa/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs/suite/fixtures/c_cpp_properties/inc/b/bb/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs/suite/fixtures/c_cpp_properties/inc/b/cc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs/suite/fixtures/c_cpp_properties/inc/c/aa/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs/suite/fixtures/c_cpp_properties/inc/c/bb/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs/suite/fixtures/c_cpp_properties/inc/c/cc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs/suite/fixtures/c_cpp_properties/inc/d/aa/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs/suite/fixtures/c_cpp_properties/inc/d/bb/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs/suite/fixtures/c_cpp_properties/inc/d/cc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs/suite/linter-clang.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/suite/linter-clang.spec.ts -------------------------------------------------------------------------------- /specs/suite/linter-cppcheck.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/suite/linter-cppcheck.spec.ts -------------------------------------------------------------------------------- /specs/suite/linter-flawfinder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/suite/linter-flawfinder.spec.ts -------------------------------------------------------------------------------- /specs/suite/linter-flexelint.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/suite/linter-flexelint.spec.ts -------------------------------------------------------------------------------- /specs/suite/linter-lizard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/suite/linter-lizard.spec.ts -------------------------------------------------------------------------------- /specs/suite/linter-pclintplus.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/suite/linter-pclintplus.spec.ts -------------------------------------------------------------------------------- /specs/suite/linter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/suite/linter.spec.ts -------------------------------------------------------------------------------- /specs/suite/setup-vfs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/suite/setup-vfs.spec.ts -------------------------------------------------------------------------------- /specs/suite/unit-c_cpp_properties.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/suite/unit-c_cpp_properties.spec.ts -------------------------------------------------------------------------------- /specs/suite/unit-path.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/suite/unit-path.spec.ts -------------------------------------------------------------------------------- /specs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/specs/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbenden/vscode-c-cpp-flylint/HEAD/typings.d.ts --------------------------------------------------------------------------------