mirror of
https://github.com/threeal/cmake-action.git
synced 2025-04-23 12:01:20 +00:00
* test(eslint): simplify TypeScript configuration * test(eslint): remove `eslint-config-prettier` * test(eslint): remove `eslint-plugin-tsdoc` * test(eslint): simplify glob pattern for TypeScript files * chore: bump @typescript-eslint/eslint-plugin from 6.21.0 to 7.0.1 (#193) Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 6.21.0 to 7.0.1. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v7.0.1/packages/eslint-plugin) --- updated-dependencies: - dependency-name: "@typescript-eslint/eslint-plugin" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
19 lines
366 B
JSON
19 lines
366 B
JSON
{
|
|
"root": true,
|
|
"ignorePatterns": ["dist"],
|
|
"extends": ["eslint:recommended"],
|
|
"overrides": [
|
|
{
|
|
"files": ["**/*.?([cm])ts"],
|
|
"extends": ["plugin:@typescript-eslint/recommended"]
|
|
},
|
|
{
|
|
"files": ["package.json"],
|
|
"plugins": ["json-files"],
|
|
"rules": {
|
|
"json-files/sort-package-json": "error"
|
|
}
|
|
}
|
|
]
|
|
}
|