tachiyomi-extensions-inspector/webUI/react/.eslintrc.js
2020-12-24 16:53:59 +01:00

18 lines
428 B
JavaScript

module.exports = {
extends: ['airbnb-typescript'],
plugins: ['@typescript-eslint'],
parserOptions: {
project: './tsconfig.json',
},
rules: {
// Indent with 4 spaces
'@typescript-eslint/indent': ['error', 4],
// Indent JSX with 4 spaces
'react/jsx-indent': ['error', 4],
// Indent props with 4 spaces
'react/jsx-indent-props': ['error', 4],
},
};