debian-mirror-gitlab/doc/development/fe_guide/tooling.md

210 lines
5.7 KiB
Markdown
Raw Normal View History

2021-01-29 00:20:46 +05:30
---
stage: none
group: unassigned
2021-02-22 17:27:13 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2021-01-29 00:20:46 +05:30
---
2020-01-01 13:55:28 +05:30
# Tooling
## ESLint
We use ESLint to encapsulate and enforce frontend code standards. Our configuration may be found in the [`gitlab-eslint-config`](https://gitlab.com/gitlab-org/gitlab-eslint-config) project.
2020-07-28 23:09:34 +05:30
### Yarn Script
This section describes yarn scripts that are available to validate and apply automatic fixes to files using ESLint.
2021-02-22 17:27:13 +05:30
To check all staged files (based on `git diff`) with ESLint, run the following script:
2020-07-28 23:09:34 +05:30
```shell
yarn eslint-staged
```
2021-02-22 17:27:13 +05:30
A list of problems found are logged to the console.
2020-07-28 23:09:34 +05:30
2021-02-22 17:27:13 +05:30
To apply automatic ESLint fixes to all staged files (based on `git diff`), run the following script:
2020-07-28 23:09:34 +05:30
```shell
yarn eslint-staged-fix
```
2021-02-22 17:27:13 +05:30
If manual changes are required, a list of changes are sent to the console.
2020-07-28 23:09:34 +05:30
To check **all** files in the repository with ESLint, run the following script:
```shell
yarn eslint
```
2021-02-22 17:27:13 +05:30
A list of problems found are logged to the console.
2020-07-28 23:09:34 +05:30
To apply automatic ESLint fixes to **all** files in the repository, run the following script:
```shell
yarn eslint-fix
```
2021-02-22 17:27:13 +05:30
If manual changes are required, a list of changes are sent to the console.
2020-07-28 23:09:34 +05:30
2021-02-22 17:27:13 +05:30
WARNING:
2020-10-24 23:57:45 +05:30
Limit use to global rule updates. Otherwise, the changes can lead to huge Merge Requests.
2020-07-28 23:09:34 +05:30
2020-01-01 13:55:28 +05:30
### Disabling ESLint in new files
Do not disable ESLint when creating new files. Existing files may have existing rules
disabled due to legacy compatibility reasons but they are in the process of being refactored.
Do not disable specific ESLint rules. To avoid introducing technical debt, you may disable the following
rules only if you are invoking/instantiating existing code modules.
- [`no-new`](https://eslint.org/docs/rules/no-new)
- [`class-method-use-this`](https://eslint.org/docs/rules/class-methods-use-this)
2021-01-29 00:20:46 +05:30
Disable these rules on a per-line basis. This makes it easier to refactor in the
future. For example, use `eslint-disable-next-line` or `eslint-disable-line`.
2020-01-01 13:55:28 +05:30
### Disabling ESLint for a single violation
If you do need to disable a rule for a single violation, disable it for the smallest amount of code necessary:
```javascript
// bad
/* eslint-disable no-new */
import Foo from 'foo';
new Foo();
// better
import Foo from 'foo';
// eslint-disable-next-line no-new
new Foo();
```
### The `no-undef` rule and declaring globals
**Never** disable the `no-undef` rule. Declare globals with `/* global Foo */` instead.
When declaring multiple globals, always use one `/* global [name] */` line per variable.
```javascript
// bad
/* globals Flash, Cookies, jQuery */
// good
/* global Flash */
/* global Cookies */
/* global jQuery */
```
## Formatting with Prettier
2020-07-28 23:09:34 +05:30
> Support for `.graphql` [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/227280) in GitLab 13.2.
Our code is automatically formatted with [Prettier](https://prettier.io) to follow our style guides. Prettier is taking care of formatting `.js`, `.vue`, `.graphql`, and `.scss` files based on the standard prettier rules. You can find all settings for Prettier in `.prettierrc`.
2020-01-01 13:55:28 +05:30
### Editor
2021-01-03 14:25:43 +05:30
The recommended method to include Prettier in your workflow is to set up your
preferred editor (all major editors are supported) accordingly. We suggest
setting up Prettier to run when each file is saved. For instructions about using
Prettier in your preferred editor, see the [Prettier documentation](https://prettier.io/docs/en/editors.html).
2020-01-01 13:55:28 +05:30
2020-07-28 23:09:34 +05:30
Please take care that you only let Prettier format the same file types as the global Yarn script does (`.js`, `.vue`, `.graphql`, and `.scss`). In VSCode by example you can easily exclude file formats in your settings file:
2020-01-01 13:55:28 +05:30
2020-04-22 19:07:51 +05:30
```json
2020-01-01 13:55:28 +05:30
"prettier.disableLanguages": [
"json",
"markdown"
2020-04-22 19:07:51 +05:30
]
2020-01-01 13:55:28 +05:30
```
### Yarn Script
The following yarn scripts are available to do global formatting:
2020-04-22 19:07:51 +05:30
```shell
2020-01-01 13:55:28 +05:30
yarn prettier-staged-save
```
Updates all currently staged files (based on `git diff`) with Prettier and saves the needed changes.
2020-04-22 19:07:51 +05:30
```shell
2020-01-01 13:55:28 +05:30
yarn prettier-staged
```
Checks all currently staged files (based on `git diff`) with Prettier and log which files would need manual updating to the console.
2020-04-22 19:07:51 +05:30
```shell
2020-01-01 13:55:28 +05:30
yarn prettier-all
```
Checks all files with Prettier and logs which files need manual updating to the console.
2020-04-22 19:07:51 +05:30
```shell
2020-01-01 13:55:28 +05:30
yarn prettier-all-save
```
Formats all files in the repository with Prettier. (This should only be used to test global rule updates otherwise you would end up with huge MR's).
The source of these Yarn scripts can be found in `/scripts/frontend/prettier.js`.
#### Scripts during Conversion period
2020-04-22 19:07:51 +05:30
```shell
2020-01-01 13:55:28 +05:30
node ./scripts/frontend/prettier.js check-all ./vendor/
```
2021-02-22 17:27:13 +05:30
This iterates over all files in a specific folder, and checks them.
2020-01-01 13:55:28 +05:30
2020-04-22 19:07:51 +05:30
```shell
2020-01-01 13:55:28 +05:30
node ./scripts/frontend/prettier.js save-all ./vendor/
```
2021-02-22 17:27:13 +05:30
This iterates over all files in a specific folder and saves them.
2020-01-01 13:55:28 +05:30
### VSCode Settings
#### Select Prettier as default formatter
To select Prettier as a formatter, add the following properties to your User or Workspace Settings:
```javascript
{
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
2020-07-28 23:09:34 +05:30
},
"[graphql]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
2020-01-01 13:55:28 +05:30
}
}
```
#### Format on Save
To automatically format your files with Prettier, add the following properties to your User or Workspace Settings:
```javascript
{
"[html]": {
"editor.formatOnSave": true
},
"[javascript]": {
"editor.formatOnSave": true
},
"[vue]": {
"editor.formatOnSave": true
},
2020-07-28 23:09:34 +05:30
"[graphql]": {
"editor.formatOnSave": true
},
2020-01-01 13:55:28 +05:30
}
```