Um parágrafo da descrição do projeto vai aqui
Essas instruções permitirão que você obtenha uma cópia do projeto em operação na sua máquina local para fins de desenvolvimento e teste.
Consulte Implantação para saber como implantar o projeto.
| { | |
| "terminal.integrated.fontSize": 14, | |
| "workbench.iconTheme": "material-icon-theme", | |
| "workbench.startupEditor": "newUntitledFile", | |
| "editor.tabSize": 2, | |
| "editor.fontSize": 18, | |
| "editor.lineHeight": 26, | |
| "editor.fontFamily": "Fira Code", |
| const canvas = document.getElementById('board'); | |
| const ctx = canvas.getContext('2d'); | |
| ctx.scale(36, 36); | |
| const piece = { | |
| x: 3, | |
| y: 0, | |
| matrix: [ | |
| [0, 0, 0], |
| { | |
| "parser": "babel-eslint", | |
| "extends": "airbnb", | |
| "env": { | |
| "browser": true, | |
| "jest": true | |
| }, | |
| "plugins": ["react", "jsx-a11y", "import"], | |
| "rules": { | |
| "react/jsx-filename-extension": [ |
| const models = require('../app/models') | |
| const Sequelize = require('sequelize') | |
| const fs = require('fs') | |
| const path = require('path') | |
| const sequelize = new Sequelize('', '', '', { | |
| host: '', | |
| dialect: 'postgres' | |
| }) |
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.