Skip to content

Commit

Permalink
Update plugins, delete old rules and configure new rules
Browse files Browse the repository at this point in the history
  • Loading branch information
diogoazevedos committed Nov 9, 2021
1 parent c33df89 commit a1cfa34
Show file tree
Hide file tree
Showing 5 changed files with 387 additions and 404 deletions.
3 changes: 3 additions & 0 deletions configs/base-plugins.js
Expand Up @@ -202,6 +202,9 @@ module.exports = {
'unicorn/prefer-object-from-entries': 'error',
'unicorn/no-useless-fallback-in-spread': 'error',
'unicorn/no-invalid-remove-event-listener': 'off',
'unicorn/template-indent': 'error',
'unicorn/no-empty-file': 'error',
'unicorn/prefer-export-from': 'error',

// enable in the future
'unicorn/prefer-top-level-await': 'off',
Expand Down
11 changes: 3 additions & 8 deletions configs/jest.js
Expand Up @@ -21,7 +21,7 @@ module.exports = {
assertFunctionNames: ['expect']
}
],
'jest/lowercase-name': ['error'],
'jest/prefer-lowercase-title': ['error'],
'jest/no-alias-methods': ['error'],
'jest/no-commented-out-tests': ['error'],
'jest/no-conditional-expect': ['error'],
Expand All @@ -40,25 +40,20 @@ module.exports = {
'jest/no-test-return-statement': ['error'],
'jest/prefer-called-with': ['error'],
'jest/prefer-strict-equal': ['error'],
'jest/prefer-to-be-null': ['error'],
'jest/prefer-to-be-undefined': ['error'],
'jest/prefer-to-be': ['error'],
'jest/prefer-to-contain': ['error'],
'jest/prefer-to-have-length': ['error'],
'jest/require-to-throw-message': ['error'],
'jest/require-top-level-describe': ['error'],
'jest/no-expect-resolves': ['off'],
'jest/no-interpolation-in-snapshots': ['off'],
'jest/no-jest-import': ['off'],
'jest/no-mocks-import': ['off'],
'jest/no-restricted-matchers': ['off'],
'jest/no-truthy-falsy': ['off'],
'jest/no-try-expect': ['off'],
'jest/prefer-expect-assertions': ['off'],
'jest/prefer-hooks-on-top': ['off'],
'jest/prefer-inline-snapshots': ['off'],
'jest/prefer-spy-on': ['off'],
'jest/prefer-todo': ['off'],
'jest/valid-describe': ['off'],
'jest/valid-describe-callback': ['off'],
'jest/valid-expect-in-promise': ['off'],
'jest/valid-expect': ['off'],
'jest/valid-title': ['off'],
Expand Down
4 changes: 2 additions & 2 deletions configs/typescript.js
Expand Up @@ -258,7 +258,6 @@ module.exports = {
'@typescript-eslint/no-unsafe-call': ['warn'],
'@typescript-eslint/no-unsafe-member-access': ['warn'],
'@typescript-eslint/no-unsafe-return': ['warn'],
'@typescript-eslint/no-unused-vars-experimental': ['off'],
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': ['error'],
'@typescript-eslint/prefer-as-const': ['error'],
Expand Down Expand Up @@ -325,6 +324,7 @@ module.exports = {
'@typescript-eslint/no-unsafe-argument': 'error',
'@typescript-eslint/prefer-return-this-type': 'off',
'@typescript-eslint/no-meaningless-void-operator': 'error',
'@typescript-eslint/padding-line-between-statements': 'off'
'@typescript-eslint/padding-line-between-statements': 'off',
'@typescript-eslint/consistent-type-exports': 'error'
}
};

0 comments on commit a1cfa34

Please sign in to comment.