0.1.1 • Published 4 years ago
@hydroquebec/eslint-plugin-ui5 v0.1.1
eslint-plugin-ui5
ESLint rules for UI5 development
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-ui5:
$ npm install eslint-plugin-ui5 --save-devNote: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-ui5 globally.
Usage
Add ui5 to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
"plugins": [
"ui5"
]
}Then configure the rules you want to use under the rules section.
{
"rules": {
"ui5/rule-name": 2
}
}Supported Rules
- ⭐ - recommended rules
- ✒️ - fixable rules
Possible Errors
| Rule ID | Description | |
|---|---|---|
| ⭐ | ui5/no-global-id | Prevents accessing controls using sap.ui.getCore().byId() |
Best Practices
| Rule ID | Description | |
|---|---|---|
| ⭐ | ui5/no-global-name | Prevents accessing modules in a synchronous way using their global name. |
| ⭐ | ui5/no-for-in | Prevents using for...in loops. |
| ⭐ | ui5/no-boolean-literal-compare | Prevents using boolean literals in a comparison |
Stylistic Issues
| Rule ID | Description | |
|---|---|---|
| ui5/hungarian-notation | Enforces hungarian notation when declaring variables. |
0.1.1
4 years ago