-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add dependency Husky, updates dependencies and config for the Eslint,…
… Prettier (#213) * Update Eslint config * Update Prettier config * Add husky dependency * Update dependencies * Add .lintstagedrc * Delete dependencies for storybook * Add option for css-modules * Fix dev-dependencies * Add shared component Link * Add folder for hooks * Add global and fonts styles * Add utilsmeta-image-path and get-text-without-paragraph * Add static variables * Add mixins * Fix styles and default exports * Refactoring utils folder * Refactoring styles global, variables, mixins * Delete styles for header * Update SEO component * Fix build * Delete comment for variables * Fix variables the name Breakpoints * Fix name breakpoint variable for lg * Refactoring Breakpoints variables * Upgrade dependencies * Add various fixes * Return SEO component * Run Prettier and ESLint on all files * Upgrade dependencies * Fix SEO Co-authored-by: Maksim Gorodov <[email protected]>
- Loading branch information
1 parent
dc5d488
commit 0bd5f74
Showing
34 changed files
with
2,951 additions
and
4,126 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
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,5 @@ | ||
{ | ||
"hooks": { | ||
"pre-commit": "lint-staged --concurrent false" | ||
} | ||
} |
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,4 @@ | ||
{ | ||
"*.{js,html,css,scss,md}": "prettier --write", | ||
"*.js": "eslint --cache --fix" | ||
} |
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 |
---|---|---|
@@ -1,7 +1,14 @@ | ||
{ | ||
"endOfLine": "lf", | ||
"printWidth": 100, | ||
"tabWidth": 2, | ||
"useTabs": false, | ||
"semi": true, | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"trailingComma": "es5" | ||
"quoteProps": "as-needed", | ||
"jsxSingleQuote": false, | ||
"trailingComma": "es5", | ||
"bracketSpacing": true, | ||
"jsxBracketSameLine": false, | ||
"arrowParens": "always", | ||
"endOfLine": "lf" | ||
} |
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
Oops, something went wrong.