From 138e6d9b9769e33cfe75f9c8dd697d65e7037fb2 Mon Sep 17 00:00:00 2001 From: dan Date: Thu, 7 Sep 2023 02:06:07 +0100 Subject: [PATCH] Fix lint-staged not allowing edits to Markdown files (#1402) * Remove unnecessary overrides config * Only lint-staged code files --- .eslintrc.js | 12 +++--------- package.json | 2 +- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/.eslintrc.js b/.eslintrc.js index 46b5231b..a40b5da9 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -7,6 +7,9 @@ module.exports = { ], parser: '@typescript-eslint/parser', plugins: ['@typescript-eslint', 'detox'], + rules: { + 'react-native/no-inline-styles': 0, + }, ignorePatterns: [ '**/__mocks__/*.ts', 'src/platform/polyfills.ts', @@ -21,13 +24,4 @@ module.exports = { '*.html', 'bskyweb', ], - overrides: [ - { - files: ['*.js', '*.mjs', '*.ts', '*.tsx'], - rules: { - semi: [2, 'never'], - 'react-native/no-inline-styles': 0, - }, - }, - ], } diff --git a/package.json b/package.json index e4ae8027..59b9ba95 100644 --- a/package.json +++ b/package.json @@ -252,6 +252,6 @@ ] }, "lint-staged": { - "*": "yarn eslint --ext .js,.jsx,.ts,.tsx --fix" + "*{.js,.jsx,.ts,.tsx}": "yarn eslint --fix" } }