Changes should go through Pull Request (PR) for code review.
## Description
Add description
## References
- [JIRA card](https://identifi.atlassian.net/browse/JAM-1)
## Platform
- [ ] Backend
- [ ] Web
- [ ] Mobile
- [ ] DevOps
- [ ] QA Automation
## Types of changes
- [ ] Bug fix
- [ ] Non-breaking change
- [ ] Breaking change
## Affected Components
- [ ] Admin
- [ ] API
- [ ] Integration
- [ ] CI/CD
- [ ] Terraform
- [ ] Packer
- [ ] Others
{
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "import"],
"extends": [
"airbnb-base",
"plugin:@typescript-eslint/recommended",
"plugin:import/typescript"
],
"settings": {
"import/resolver": {
"typescript": {}
}
},
"env": {
"node": true,
"mocha": true
},
"rules": {
"max-len": ["error", 128],
"import/extensions": "off",
"func-names": "off",
"semi": "off",
"no-shadow": "off",
"@typescript-eslint/no-shadow": ["error"],
"import/no-extraneous-dependencies": "off",
"@typescript-eslint/semi": ["error"],
"@typescript-eslint/explicit-module-boundary-types": "off",
"import/prefer-default-export": "off",
"@typescript-eslint/ban-types": "off",
"class-methods-use-this": "off",
"object-curly-spacing": "off",
"@typescript-eslint/object-curly-spacing": ["error", "always"],
}
}
{
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 2,
"semi": true
}
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"
# your command here
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
}
There are bots to help signal for code reviews.
It could run alone and should not rely upon other scenarios to run correctly.