Skip to content

Commit

Permalink
Merge branch 'release/0.2.14'
Browse files Browse the repository at this point in the history
  • Loading branch information
titouanmathis committed Sep 19, 2022
2 parents d51c526 + 9ba6f6b commit 6cbccd5
Show file tree
Hide file tree
Showing 119 changed files with 19,307 additions and 9,438 deletions.
12 changes: 11 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ module.exports = {
rules: {
'import/extensions': ['error', 'always', { ignorePackages: true }],
'no-underscore-dangle': 'off',
'import/no-relative-packages': 'off',
},
overrides: [
{
Expand All @@ -23,9 +24,18 @@ module.exports = {
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
rules: {
'@typescript-eslint/ban-ts-comment': 'off',
'object-curly-newline': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'jsdoc/require-param': 'off',
'jsdoc/require-returns': 'off',
'require-jsdoc': 'off',
'import/extensions': 'off',
},
},
{
files: ['packages/ui/**/*.js'],
files: ['packages/ui/**/*.js', 'packages/ui/**/*.ts'],
rules: {
'import/no-extraneous-dependencies': [
'error',
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
release:
runs-on: ubuntu-latest
runs-on: macos-latest
steps:
- uses: actions/checkout@v2

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: npm run lint:types

Unit:
runs-on: ubuntu-latest
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
Expand All @@ -57,7 +57,7 @@ jobs:
verbose: true

Export-Size:
runs-on: ubuntu-latest
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
with:
Expand Down
1 change: 1 addition & 0 deletions .prettierrc.cjs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module.exports = {
...require('@studiometa/prettier-config'),
trailingComma: 'all',
twigPrintWidth: 100,
twigAlwaysBreakObjects: false,
twigMultiTags: ['html_element,end_html_element', 'with,endwith'],
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "studiometa/ui",
"version": "0.2.13",
"version": "0.2.14",
"description": "A set of opiniated, unstyled and accessible components.",
"license": "MIT",
"require": {
Expand Down
Loading

0 comments on commit 6cbccd5

Please sign in to comment.