Files
suwayomi-material-you-webui/.eslintrc.js

23 lines
533 B
JavaScript
Raw Normal View History

2020-12-24 16:49:43 +03:30
module.exports = {
2021-09-09 17:05:07 +04:30
extends: [
'airbnb',
'airbnb-typescript'
],
2020-12-24 16:50:50 +01:00
plugins: ['@typescript-eslint'],
2020-12-24 17:19:49 +03:30
parserOptions: {
2020-12-24 16:50:50 +01:00
project: './tsconfig.json',
2020-12-24 17:19:49 +03:30
},
rules: {
// Indent with 4 spaces
2020-12-24 16:50:50 +01:00
'@typescript-eslint/indent': ['error', 4],
2020-12-24 17:19:49 +03:30
// Indent JSX with 4 spaces
'react/jsx-indent': ['error', 4],
// Indent props with 4 spaces
'react/jsx-indent-props': ['error', 4],
2021-03-09 16:44:09 +03:30
'no-plusplus': ['error', { 'allowForLoopAfterthoughts': true }]
2020-12-24 16:49:43 +03:30
},
};