Skip to content

Commit a45eb46

Browse files
Bump RSS to v2.6.4 (#162)
1 parent 00b4439 commit a45eb46

File tree

23 files changed

+37156
-12707
lines changed

23 files changed

+37156
-12707
lines changed

.eslintrc.js

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports = {
2-
parser: 'babel-eslint',
2+
parser: '@babel/eslint-parser',
33
env: {
44
browser: true,
55
es6: true,
@@ -9,7 +9,6 @@ module.exports = {
99
'eslint:recommended',
1010
'plugin:react/recommended',
1111
'plugin:prettier/recommended',
12-
'prettier/react',
1312
],
1413
parserOptions: {
1514
ecmaFeatures: {
@@ -62,19 +61,17 @@ module.exports = {
6261
{
6362
// TypeScript specific rules
6463
files: ['*.{ts,tsx}'],
65-
extends: [
66-
'plugin:@typescript-eslint/recommended',
67-
'prettier/@typescript-eslint',
68-
],
64+
extends: ['plugin:@typescript-eslint/recommended'],
6965
rules: {
7066
'@typescript-eslint/explicit-function-return-type': 'off',
7167
'@typescript-eslint/no-use-before-define': 'off',
7268
'@typescript-eslint/no-explicit-any': 'off',
7369
'@typescript-eslint/no-implicit-any': 'off',
7470
'@typescript-eslint/explicit-member-accessibility': 'off',
71+
'@typescript-eslint/no-unnecessary-type-constraint': 'off',
7572
'@typescript-eslint/no-non-null-assertion': 'off',
7673
'@typescript-eslint/no-empty-interface': 'off',
77-
'@typescript-eslint/ban-ts-ignore': 'off',
74+
'@typescript-eslint/ban-ts-comment': 'off',
7875
'@typescript-eslint/no-empty-function': 'off',
7976
'@typescript-eslint/no-unused-vars': [
8077
'error',

.flowconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[ignore]
2+
.*/malformed_package_json/.*
23

34
[include]
45
<PROJECT_ROOT>/src/*.flow

0 commit comments

Comments
 (0)