-
-
Notifications
You must be signed in to change notification settings - Fork 27k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build failing even no errors #10645
Labels
Comments
My ESLint config {
"extends": "airlight-react",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"react/jsx-props-no-spreading": "off",
"react/react-in-jsx-scope": "off",
"no-console": "warn",
"jsx-a11y/label-has-associated-control": "off",
"@typescript-eslint/indent": "off",
"max-lines-per-function": ["error", { "max": 60 }],
"max-nested-callbacks": ["error", { "max": 5 }],
"max-depth": ["error", { "max": 5 }],
"max-lines": ["error", { "max": 300 }],
"complexity": ["error", { "max": 10 }]
}
} My tsconfig {
"compilerOptions": {
"target": "es5",
"baseUrl": "src",
"lib": ["dom", "dom.iterable", "esnext"],
"downlevelIteration": true,
"typeRoots": ["./node_modules/@types", "./typings"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"strict": true,
"inlineSourceMap": true,
"removeComments": true,
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": ["src", "typings", "tests"],
"exclude": ["node_modules"]
} |
Sorry, version: 2
jobs:
build-test-install-deploy:
docker:
# specify the version you desire here
- image: circleci/node:10
# Specify service dependencies here if necessary
# CircleCI maintains a library of pre-built images
# documented at https://circleci.com/docs/2.0/circleci-images/
# - image: circleci/mongo:3.4.4
# Supress ESLint errors
environment:
+ ESLINT_NO_DEV_ERRORS: 'true'
+ DISABLE_ESLINT_PLUGIN: 'true' Note: make sure add |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Describe the bug
Build failing even no errors
Did you try recovering your dependencies?
Yes, i tried
Which terms did you search for in User Guide?
My case similar to #9887, but my output isn't error
Environment
Steps to reproduce
(Write your steps here:)
Expected behavior
Successfully building
Actual behavior
Reproducible demo
(Paste the link to an example project and exact instructions to reproduce the issue.)
The text was updated successfully, but these errors were encountered: