Skip to content

Commit

Permalink
Merge pull request #168 from leemonade/task/bump_main
Browse files Browse the repository at this point in the history
Release 1.1.0
  • Loading branch information
MIGUELez11 authored Jun 6, 2024
2 parents 7c9f4b1 + 47e270d commit 6e62225
Show file tree
Hide file tree
Showing 749 changed files with 58,588 additions and 18,006 deletions.
50 changes: 31 additions & 19 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,39 +1,51 @@
{
"env": {
"browser": true,
"commonjs": true,
"es2021": true,
"node": true,
"jest": true
"node": true
},
"globals": {
"leemons": true
},
"extends": [
"plugin:react/recommended",
"airbnb-base",
"prettier"
],
"parser": "babel-eslint",
"extends": ["plugin:react/recommended", "plugin:sonarjs/recommended", "airbnb-base", "prettier"],
"settings": {
"react": {
"version": "detect"
}
},
"parser": "@babel/eslint-parser",
"parserOptions": {
"requireConfigFile": false,
"babelOptions": {
"babelrc": false,
"configFile": false,
"presets": ["@babel/preset-env"],
"plugins": ["@babel/plugin-syntax-jsx"]
},
"ecmaVersion": 2020,
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
}
},
"plugins": [
"react",
"import",
"prettier"
],
"plugins": ["react", "sonarjs", "import", "prettier"],
"rules": {
"no-plusplus": "off",
"import/no-dynamic-requires": "off",
"import/no-extraneous-dependencies": "off",
"react/react-in-jsx-scope": "off",
"no-underscore-dangle": "off",
"prettier/prettier": ["error", {}, {
"usePrettierrc": true
}]
"prettier/prettier": [
2,
{},
{
"usePrettierrc": true
}
],
"import/no-names-as-default": "off",
"import/prefer-default-export": "warn",
"no-param-reassign": "off",
"radix": "off",
"no-unused-vars": "warn"
}
}
1 change: 1 addition & 0 deletions .github/workflows/storybook-s3-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
'@bubbles-ui/calendars': patch
'@bubbles-ui/editors': patch
'@bubbles-ui/leemons': patch
'@bubbles-ui/extras': patch
'@bubbles-ui/icons': patch
---
Expand Down
10 changes: 10 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,13 @@ docs-build
*.d.ts
*.d.ts.map
build-storybook.log
.idea

# Coverage directory used by tools like istanbul

coverage
\*.lcov

# nyc test coverage

.nyc_output
1 change: 1 addition & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@
"trailingCommas": "es5",
"singleQuote": true
}

26 changes: 11 additions & 15 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,14 @@
{
"files.exclude": {
"**/.git": false,
"**/.svn": false,
"**/.hg": false,
"**/CVS": false,
"**/.DS_Store": false,
"**/Thumbs.db": false,
},
"[javascript]": {
"editor.codeActionsOnSave": {
"source.organizeImports": false,
"source.fixAll": true,
},
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
"[javascript]": {
"editor.codeActionsOnSave": {
"source.organizeImports": "never",
"source.fixAll": "explicit"
},
"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"sonarlint.connectedMode.project": {
"connectionId": "leemons",
"projectKey": "leemonade_bubbles"
}
}
Loading

0 comments on commit 6e62225

Please sign in to comment.