mirror of
https://github.com/threeal/cmake-action.git
synced 2025-06-09 10:41:22 +00:00
* ci(test): remove `test-package` job * test: remove testing using Jest * test(eslint): remove `parserOptions` entry
27 lines
621 B
JSON
27 lines
621 B
JSON
{
|
|
"root": true,
|
|
"ignorePatterns": ["dist"],
|
|
"extends": ["eslint:recommended", "prettier"],
|
|
"overrides": [
|
|
{
|
|
"files": ["**/*.mts", "**/*.ts"],
|
|
"extends": ["plugin:@typescript-eslint/recommended"],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"project": ["tsconfig.json"]
|
|
},
|
|
"plugins": ["@typescript-eslint", "eslint-plugin-tsdoc"],
|
|
"rules": {
|
|
"tsdoc/syntax": "error"
|
|
}
|
|
},
|
|
{
|
|
"files": ["package.json"],
|
|
"plugins": ["json-files"],
|
|
"rules": {
|
|
"json-files/sort-package-json": "error"
|
|
}
|
|
}
|
|
]
|
|
}
|