-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from Hexlet/nodejs
Nodejs
- Loading branch information
Showing
15 changed files
with
486 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
**/node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
**/node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/usr/bin/env node | ||
|
||
import { exec } from 'child_process'; | ||
import { check } from '../src/index.js'; | ||
|
||
exec('/LanguageTool-6.3/start.sh >/dev/null 2>&1 &', () => setTimeout(async () => { | ||
const rules = process.argv.slice(2); | ||
|
||
check(rules); | ||
}, 5000)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/usr/bin/env node | ||
|
||
import { exec } from 'child_process'; | ||
import { fix } from '../src/index.js'; | ||
|
||
exec('/LanguageTool-6.3/start.sh >/dev/null 2>&1 &', () => setTimeout(() => { | ||
const rules = process.argv.slice(2); | ||
fix(rules); | ||
}, 5000)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/usr/bin/env node | ||
|
||
import { exec } from 'child_process'; | ||
import { getWrongWords } from '../src/index.js'; | ||
|
||
exec('/LanguageTool-6.3/start.sh >/dev/null 2>&1 &', () => setTimeout(async () => { | ||
const rules = process.argv.slice(2); | ||
getWrongWords(rules); | ||
}, 5000)); |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
файл где мы написали мсли и все пошло не по плану . А да забыл запятую опять | ||
|
||
* `*`: умножение | ||
* `/`: деление | ||
* `-`: вычитание | ||
* "%": https://ru.wikipedia.org/wiki/Деление_с_остатком[остаток от деления] | ||
* `+**+`: возведение в степень |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
А здесьбудет много ошибка моя, которая пришла, которую ушли. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
-значения | ||
а-я | ||
автогенерацию | ||
автогенерируемого | ||
автогенерируемое | ||
автоинкремент | ||
автоинкремента | ||
автоинкрементом | ||
атомарность | ||
Атомарность | ||
бизнес-логики | ||
бизнес-транзакции | ||
бизнес-транзакция | ||
бэкенда | ||
бэкенде | ||
веб-проектах | ||
категоризировать | ||
клиент-серверное | ||
клиент-серверную | ||
криптобиржи | ||
нодах | ||
онлайн-курсах | ||
онлайн-школе | ||
онлайн-школы | ||
партиционировали | ||
партиционированная | ||
пентили | ||
пентиль | ||
подзапрос | ||
подзапроса | ||
подзапросе | ||
подзапросом | ||
проагрегировать | ||
проспойлерить | ||
рассинхронизированы | ||
регистрозависимый | ||
фокус-группу" | ||
фронтенд | ||
фронтенде | ||
хекслет | ||
Хекслет | ||
хекслета | ||
Хекслета | ||
хекслете |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "languagetool-cli", | ||
"version": "1.0.0", | ||
"description": "For checking errors:", | ||
"main": "index.js", | ||
"type": "module", | ||
"scripts": { | ||
"start": "/LanguageTool-6.3/start.sh >/dev/null 2>&1", | ||
"check": "./bin/check", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"dependencies": { | ||
"axios": "^1.6.8", | ||
"lodash": "^4.17.21" | ||
} | ||
} |
Oops, something went wrong.