mentie 0.0.9 ā 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/.eslintrc.cjs +0 -7
- package/.husky/pre-commit +0 -17
- package/.vscode/settings.json +0 -27
package/package.json
CHANGED
package/.eslintrc.cjs
DELETED
package/.husky/pre-commit
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
echo "\nš¤ [ precommit hook ] linting before committing..."
|
|
2
|
-
|
|
3
|
-
# If errors, make it clear they cannot commit
|
|
4
|
-
if ! lint_outcome=$(npm run lint); then
|
|
5
|
-
echo "šØ [ precommit hook ] lint encountered blocking issues, fix them before committing\n"
|
|
6
|
-
echo "$lint_outcome"
|
|
7
|
-
exit 1
|
|
8
|
-
fi
|
|
9
|
-
|
|
10
|
-
# If warnings, suggest they fix them
|
|
11
|
-
if echo $lint_outcome | grep -q "warning"; then
|
|
12
|
-
echo "ā ļø [ precommit hook ] lint encountered warnings, consider fixing them before pushing\n"
|
|
13
|
-
echo "$lint_outcome"
|
|
14
|
-
exit 0
|
|
15
|
-
fi
|
|
16
|
-
|
|
17
|
-
echo "ā
[ precommit hook ] lint encountered no blocking issues\n"
|
package/.vscode/settings.json
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"i18n-ally.localesPaths": [
|
|
3
|
-
"public/locales"
|
|
4
|
-
],
|
|
5
|
-
"i18n-ally.keystyle": "nested",
|
|
6
|
-
"eslint.validate": [
|
|
7
|
-
"javascript",
|
|
8
|
-
"javascriptreact",
|
|
9
|
-
"typescript",
|
|
10
|
-
"typescriptreact"
|
|
11
|
-
],
|
|
12
|
-
"editor.codeActionsOnSave": {
|
|
13
|
-
"source.fixAll.eslint": "explicit"
|
|
14
|
-
},
|
|
15
|
-
"editor.renderWhitespace": "all",
|
|
16
|
-
"editor.formatOnSave": true,
|
|
17
|
-
"eslint.format.enable": true,
|
|
18
|
-
"eslint.run": "onType",
|
|
19
|
-
"explorer.fileNesting.enabled": true,
|
|
20
|
-
"explorer.fileNesting.patterns": {
|
|
21
|
-
"vite.config.js": "*.js,.babelrc,.nvmrc,index.html,.gitignore",
|
|
22
|
-
".env": ".env*,.*.json",
|
|
23
|
-
"firebase.json": "fire*,.fire*",
|
|
24
|
-
"package.json": "package-lock.json, yarn.lock, pnpm-lock.yaml,.eslint*,config.*,.npm*,.nvm*,.ncu*",
|
|
25
|
-
"README.md": "*.md,LICENSE",
|
|
26
|
-
}
|
|
27
|
-
}
|