Adjust code to airbnb style guide, including eslint rules and prettier configuration for code base
This commit is contained in:
parent
1b55cabf63
commit
281acd6ad8
23 changed files with 919 additions and 2225 deletions
|
|
@ -1,29 +1,27 @@
|
|||
// For format details, see https://aka.ms/vscode-remote/devcontainer.json or the definition README at
|
||||
// https://github.com/microsoft/vscode-dev-containers/tree/master/containers/javascript-node-12
|
||||
{
|
||||
"name": "Node.js 12",
|
||||
"dockerFile": "Dockerfile",
|
||||
"name": "Node.js 12",
|
||||
"dockerFile": "Dockerfile",
|
||||
|
||||
// Use 'settings' to set *default* container specific settings.json values on container create.
|
||||
// You can edit these settings after create using File > Preferences > Settings > Remote.
|
||||
"settings": {
|
||||
"terminal.integrated.shell.linux": "/bin/bash"
|
||||
},
|
||||
// Use 'settings' to set *default* container specific settings.json values on container create.
|
||||
// You can edit these settings after create using File > Preferences > Settings > Remote.
|
||||
"settings": {
|
||||
"terminal.integrated.shell.linux": "/bin/bash"
|
||||
},
|
||||
|
||||
// Use 'appPort' to create a container with published ports. If the port isn't working, be sure
|
||||
// your server accepts connections from all interfaces (0.0.0.0 or '*'), not just localhost.
|
||||
// "appPort": [],
|
||||
// Use 'appPort' to create a container with published ports. If the port isn't working, be sure
|
||||
// your server accepts connections from all interfaces (0.0.0.0 or '*'), not just localhost.
|
||||
// "appPort": [],
|
||||
|
||||
// Uncomment the next line to run commands after the container is created.
|
||||
// "postCreateCommand": "yarn install",
|
||||
// Uncomment the next line to run commands after the container is created.
|
||||
// "postCreateCommand": "yarn install",
|
||||
|
||||
// Uncomment the next line to have VS Code connect as an existing non-root user in the container.
|
||||
// On Linux, by default, the container user's UID/GID will be updated to match your local user. See
|
||||
// https://aka.ms/vscode-remote/containers/non-root for details on adding a non-root user if none exist.
|
||||
// "remoteUser": "node",
|
||||
// Uncomment the next line to have VS Code connect as an existing non-root user in the container.
|
||||
// On Linux, by default, the container user's UID/GID will be updated to match your local user. See
|
||||
// https://aka.ms/vscode-remote/containers/non-root for details on adding a non-root user if none exist.
|
||||
// "remoteUser": "node",
|
||||
|
||||
// Add the IDs of extensions you want installed when the container is created in the array below.
|
||||
"extensions": [
|
||||
"dbaeumer.vscode-eslint"
|
||||
]
|
||||
// Add the IDs of extensions you want installed when the container is created in the array below.
|
||||
"extensions": ["dbaeumer.vscode-eslint"]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue