Skip to content

Commit

Permalink
chore: force release
Browse files Browse the repository at this point in the history
  • Loading branch information
o.drapeza authored and tramvaijsorg committed Sep 22, 2023
1 parent 10b7118 commit 7fa2095
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:

- name: Git Identity
run: |
git config --global user.name 'super_oleg'
git config --global user.email 'surf4sites@yandex.ru'
git config --global user.name 'tramvaijsorg'
git config --global user.email 'tramvaijsorg@users.noreply.github.com'
- uses: actions/setup-node@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-angular/recommended/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ module.exports = {
'**/node_modules/**',
'**/*@dasherize__/**',
'**/coverage/**',
'eslintrc.js',
'.eslintrc.js',
'eslintrc.js',
'**/*.d.ts',
'**/dist/**',
'**/docs/**',
Expand Down
4 changes: 2 additions & 2 deletions packages/eslint-config-react/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ module.exports = {
rules: {
'react/no-unsafe': ['warn', { checkAliases: true }], // show warnings for deprecated methods
'react/no-unused-prop-types': 'warn',
'react/jsx-handler-names': 'warn',
'react/prop-types': 'warn',
'react/jsx-handler-names': 'warn',
'react/jsx-filename-extension': 'off',
'react/destructuring-assignment': 'off',
'react/jsx-key': 'error',
'react/destructuring-assignment': 'off',
'react/no-direct-mutation-state': 'error',
'react/default-props-match-prop-types': 'warn',
'react/require-default-props': 'off', // default values in props destructuring is not supported
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config/internal/import.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ module.exports = {
rules: {
'import/no-commonjs': 'off',
'import/unambiguous': 'off',
'import/no-deprecated': 'warn',
'import/prefer-default-export': 'off', // default imports is evil
'import/no-deprecated': 'warn',
'import/default': 'error', // enable default import validation
'import/extensions': [
'error',
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin/lib/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
rules: {
'member-ordering': require('./deprecated/member-ordering'),
'require-return-type': require('./deprecated/require-return-type'),
'member-ordering': require('./deprecated/member-ordering'),
},
};

0 comments on commit 7fa2095

Please sign in to comment.