Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: wip #3455

Open
wants to merge 1 commit into
base: next
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@ browsers/
.scannerwork
/packages/react-ui-validations/.creevey/report
/packages/react-ui-validations/.storybook/build/

.cspellcache
14 changes: 14 additions & 0 deletions packages/react-ui-validations/cspell.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"version": "0.2",
"language": "en,ru",
"dictionaryDefinitions": [
{
"name": "cspell-custom-words",
"path": "./cspell_custom_words.txt",
"addWords": true
}
],
"dictionaries": ["cspell-custom-words", "typescript", "html"],
"import": ["@cspell/dict-ru_ru/cspell-ext.json"],
"ignorePaths": ["node_modules", "build", "dist", "selenium-tests", "storybook-static", ".creevey", "scripts"]
}
73 changes: 73 additions & 0 deletions packages/react-ui-validations/cspell_custom_words.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
bulletlist
inlinecode
isequal
consolas
darcula
defaultized
frumcheg
exactlynosense
examplevalidations
skbkontur
kontur
kontur
lightbox
lostfocus
predeploy
preinvalid
behaviour
lastname
numberlist
sorge
significan
smoothscroll
creevey
codesandbox
tokeninput
styleguide
stylelint

автофокус
автофокуса
баллунов
гайдов
фича
валидаций
валидируемые
валидируемый
валидировать
валидируемой
валидациях
валидироваться
проп
пропа
пропы
пропов
колбэке
контрол
контролы
контрола
контролу
контролов
контролом
контролами
мормонизм
невалидности
отрисованным
отрисованных
переиспользуемые
подсветятся
промис
прогрузка
прогрузку
прогрузки
прогружается
рендерится
сеттит
скролл
дженерик
рендера
сабмиту
тайпинги
тултипа
тултипы
промотка
6 changes: 5 additions & 1 deletion packages/react-ui-validations/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@
"test:pack": "tsc -p check-dts.tsconfig.json && jest --testMatch ** --testPathPattern=\\\"scripts/check-pack-files.js\\\"",
"creevey": "wait-on -t 300000 http-get://localhost:8081/ && creevey -c .creevey/config.js",
"creevey:update": "creevey -c .creevey/config.js --update",
"creevey:ui": "yarn creevey --ui"
"creevey:ui": "yarn creevey --ui",
"cspell-lint": "cspell ** --cache --show-suggestions --no-progress",
"cspell-sort": "cross-env LC_ALL=C sort -f -u cspell_custom_words.txt -o cspell_custom_words.txt"
},
"main": "./index.js",
"types": "./index.d.ts",
Expand Down Expand Up @@ -63,6 +65,7 @@
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"@cspell/dict-ru_ru": "^2.2.1",
"@hot-loader/react-dom": "^17.0.1",
"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-node-resolve": "13.1.1",
Expand All @@ -88,6 +91,7 @@
"core-js": "^3.9.1",
"creevey": "0.8.2-fix-wait.2",
"cross-env": "^7.0.3",
"cspell": "^8.8.1",
"css-loader": "^5.2.7",
"dts-bundle": "^0.7.3",
"file-loader": "^6.2.0",
Expand Down
Loading