Fix lint-staged not allowing edits to Markdown files (#1402)
* Remove unnecessary overrides config * Only lint-staged code fileszio/stable
parent
82a17db594
commit
138e6d9b97
12
.eslintrc.js
12
.eslintrc.js
|
@ -7,6 +7,9 @@ module.exports = {
|
||||||
],
|
],
|
||||||
parser: '@typescript-eslint/parser',
|
parser: '@typescript-eslint/parser',
|
||||||
plugins: ['@typescript-eslint', 'detox'],
|
plugins: ['@typescript-eslint', 'detox'],
|
||||||
|
rules: {
|
||||||
|
'react-native/no-inline-styles': 0,
|
||||||
|
},
|
||||||
ignorePatterns: [
|
ignorePatterns: [
|
||||||
'**/__mocks__/*.ts',
|
'**/__mocks__/*.ts',
|
||||||
'src/platform/polyfills.ts',
|
'src/platform/polyfills.ts',
|
||||||
|
@ -21,13 +24,4 @@ module.exports = {
|
||||||
'*.html',
|
'*.html',
|
||||||
'bskyweb',
|
'bskyweb',
|
||||||
],
|
],
|
||||||
overrides: [
|
|
||||||
{
|
|
||||||
files: ['*.js', '*.mjs', '*.ts', '*.tsx'],
|
|
||||||
rules: {
|
|
||||||
semi: [2, 'never'],
|
|
||||||
'react-native/no-inline-styles': 0,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -252,6 +252,6 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"lint-staged": {
|
"lint-staged": {
|
||||||
"*": "yarn eslint --ext .js,.jsx,.ts,.tsx --fix"
|
"*{.js,.jsx,.ts,.tsx}": "yarn eslint --fix"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue