Skip to content

Commit

Permalink
feat(shared/ui): add CheckBox and add svgr
Browse files Browse the repository at this point in the history
  • Loading branch information
ooooorobo committed Jun 6, 2024
1 parent d137356 commit a11b693
Show file tree
Hide file tree
Showing 12 changed files with 1,374 additions and 96 deletions.
15 changes: 14 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module.exports = {
commonjs: true,
es6: true,
},
ignorePatterns: ["!**/.server", "!**/.client"],
ignorePatterns: ["!**/.server", "!**/.client", "src/shared/ui/icons"],

// Base config
extends: [
Expand All @@ -30,6 +30,19 @@ module.exports = {
"plugin:storybook/recommended"
],

rules: {
"jsx-a11y/label-has-associated-control": ["error", {
"required": {
"some": ["nesting", "id"]
}
}],
"jsx-a11y/label-has-for": ["error", {
"required": {
"some": ["nesting", "id"]
}
}]
},

overrides: [
// React
{
Expand Down
3 changes: 3 additions & 0 deletions assets/icons/Check.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit a11b693

Please sign in to comment.