Skip to content

Commit

Permalink
fix all errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kas-elvirov committed Jan 3, 2025
1 parent 568bf60 commit 7d7a2a2
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VITE_APP_APP_VERSION=10.0.4
VITE_APP_APP_VERSION=10.0.5
VITE_APP_TOKEN_CREATION_LINK=https://github.com/settings/tokens/new?scopes=repo&description=Github%20GLOC
VITE_APP_APPLICATION_REPO=https://github.com/kas-elvirov/gloc
VITE_APP_DEVELOPER_WEBSITE=https://kas-elvirov.com
Expand Down
2 changes: 1 addition & 1 deletion .env.development
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VITE_APP_APP_VERSION=10.0.4
VITE_APP_APP_VERSION=10.0.5
VITE_APP_TOKEN_CREATION_LINK=https://github.com/settings/tokens/new?scopes=repo&description=Github%20GLOC
VITE_APP_APPLICATION_REPO=https://github.com/kas-elvirov/gloc
VITE_APP_DEVELOPER_WEBSITE=https://kas-elvirov.com
Expand Down
2 changes: 1 addition & 1 deletion .env.production
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VITE_APP_APP_VERSION=10.0.4
VITE_APP_APP_VERSION=10.0.5
VITE_APP_TOKEN_CREATION_LINK=https://github.com/settings/tokens/new?scopes=repo&description=Github%20GLOC
VITE_APP_APPLICATION_REPO=https://github.com/kas-elvirov/gloc
VITE_APP_DEVELOPER_WEBSITE=https://kas-elvirov.com
Expand Down
28 changes: 14 additions & 14 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
module.exports = {
"extends": ["react-app", "prettier"],
"parser": "@typescript-eslint/parser",
"rules": {
"indent": ["error", 2, { "SwitchCase": 1 }],
"max-len": [2, { "code": 120 }],
"linebreak-style": [2, "unix"],
"quotes": [2, "single"],
"semi": [2, "always"],
"brace-style": [2, "1tbs"],
"array-bracket-spacing": [2, "never"],
"camelcase": [2, { "properties": "always" }],
"eol-last": [2],
"no-trailing-spaces": [2]
'extends': ['react-app', 'prettier'],
'parser': '@typescript-eslint/parser',
'rules': {
'indent': ['error', 2, { 'SwitchCase': 1 }],
'max-len': [2, { 'code': 120 }],
'linebreak-style': [2, 'unix'],
'quotes': [2, 'single'],
'semi': [2, 'always'],
'brace-style': [2, '1tbs'],
'array-bracket-spacing': [2, 'never'],
'camelcase': [2, { 'properties': 'always' }],
'eol-last': [2],
'no-trailing-spaces': [2]
}
};
};
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"short_name": "Gloc",
"author": "Kas Elvirov",
"description": "Github Gloc - counts locs on GitHub pages",
"version": "10.0.4",
"version": "10.0.5",
"action": {
"default_icon": {
"16": "img/icon16.png",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gloc",
"version": "10.0.4",
"version": "10.0.5",
"engines": {
"node": "16.19.0",
"npm": "0.39.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ export const tryCalculateLocAndGiveProperMessageForError = ({
error: {
isError: true,
errorMessage:
"GitHub doesn't have public api for LOC counting. " +
"So i'm using code_frequency api. " +
'GitHub doesnt have public api for LOC counting. ' +
'So im using code_frequency api. ' +
'Sometimes it works, sometimes not. ' +
"Some repos shows negative LOC. Why is that happening i don't know. " +
'Some repos shows negative LOC. Why is that happening i dont know. ' +
'Let me know if you have some information about this',
},
};
Expand Down

0 comments on commit 7d7a2a2

Please sign in to comment.