* add title attr to text text links * Revert "add title attr to text text links" This reverts commit c028cd184efd3b2788d8f46134eecf521e5d7b07. * use css tooltips * add to expanded post state * handle theming * add to bskyweb
29 lines
525 B
JavaScript
29 lines
525 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: [
|
|
'@react-native-community',
|
|
'plugin:react-native-a11y/ios',
|
|
'prettier',
|
|
],
|
|
parser: '@typescript-eslint/parser',
|
|
plugins: ['@typescript-eslint', 'detox'],
|
|
ignorePatterns: [
|
|
'**/__mocks__/*.ts',
|
|
'src/third-party',
|
|
'ios',
|
|
'android',
|
|
'coverage',
|
|
'*.lock',
|
|
'.husky',
|
|
'patches',
|
|
'*.html',
|
|
],
|
|
overrides: [
|
|
{
|
|
files: ['*.js', '*.mjs', '*.ts', '*.tsx'],
|
|
rules: {
|
|
semi: [2, 'never'],
|
|
},
|
|
},
|
|
],
|
|
}
|