-
-
Notifications
You must be signed in to change notification settings - Fork 293
Closed
Labels
bugSomething isn't workingSomething isn't workingnostaleThis issue or pull request is not stale, keep it openThis issue or pull request is not stale, keep it open
Description
Describe the bug
When using mega-lint-runner, TYPESCRIPT_ES always fails to lint, because it is not able to access /tsconfig.json
Where as in Github Actions, there is no error for the same.
Expected behavior
TYPESCRIPT_ES should have thrown error or success flag on both CI & local, but it is not happenning.
Screenshots
Here is the log file instead
Additional context
My repository where it is enabled - https://github.com/MRDGH2821/Perpetual-Mechanical-Array-Bot/tree/rewrite-detritus-bug-hunt
Branch - rewrite-detritus-bug-hunt
The configurations are at root of the directory.
.eslintrc.json -
{
"extends": ["eslint-config-airbnb-base", "eslint-config-airbnb-typescript/base"],
"parserOptions": {
"project": ["tsconfig.json", "tsconfig.eslint.json"]
},
"rules": {
"no-console": "off"
}
}tsconfig.json -
{
"compilerOptions": {
"allowJs": false,
"baseUrl": "./src",
"declaration": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"importHelpers": true,
"inlineSources": true,
"lib": ["ES2019", "DOM", "ESNext"],
"module": "CommonJS",
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitReturns": true,
"outDir": "out",
"sourceMap": true,
"strict": true,
"strictNullChecks": true,
"target": "ESNext",
"resolveJsonModule": true,
"watch": false
},
"ts-node": {
"require": ["tsconfig-paths/register"],
"swc": true
},
"tsc-alias": {
"resolveFullPaths": true
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", ".vscode", "./old-src", "./out/*"]
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingnostaleThis issue or pull request is not stale, keep it openThis issue or pull request is not stale, keep it open

