react-native-vision-camera/.eslintrc.js

85 lines
2.4 KiB
JavaScript
Raw Normal View History

2021-02-19 08:20:19 -07:00
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
parserOptions: {
2021-02-20 09:04:30 -07:00
tsconfigRootDir: __dirname,
project: ["./tsconfig.json"],
2021-02-19 08:20:19 -07:00
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
sourceType: 'module',
},
plugins: ['@typescript-eslint', 'react', 'react-native', '@react-native-community', 'prettier', 'react-hooks'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react/recommended',
'plugin:prettier/recommended',
'prettier/@typescript-eslint',
'@react-native-community',
'plugin:react-hooks/recommended',
],
rules: {
// eslint
semi: 'off',
curly: ['warn', 'multi-or-nest', 'consistent'],
'no-mixed-spaces-and-tabs': ['warn', 'smart-tabs'],
'no-async-promise-executor': 'warn',
'require-await': 'warn',
'no-return-await': 'warn',
'no-await-in-loop': 'warn',
'comma-dangle': 'off', // prettier already detects this
'no-restricted-syntax': [
'error',
{
selector: 'TSEnumDeclaration',
message: "Enums have various disadvantages, use TypeScript's union types instead.",
},
],
// prettier
'prettier/prettier': ['warn'],
// typescript
'@typescript-eslint/no-use-before-define': 'off',
2021-02-19 08:23:54 -07:00
'@typescript-eslint/no-unused-vars': [
'error',
{
vars: 'all',
args: 'after-used',
ignoreRestSiblings: false,
varsIgnorePattern: '^_',
argsIgnorePattern: '^_',
},
],
2021-02-19 08:20:19 -07:00
'@typescript-eslint/explicit-function-return-type': [
'warn',
{
allowExpressions: true,
},
],
'@typescript-eslint/no-namespace': 'off',
2021-02-19 08:23:54 -07:00
'@typescript-eslint/ban-ts-comment': 'off',
'@typescript-eslint/no-unsafe-assignment': 'error',
2021-02-19 08:20:19 -07:00
// react plugin
'react/no-unescaped-entities': 'off',
// react native plugin
'react-native/no-unused-styles': 'warn',
'react-native/split-platform-components': 'warn',
'react-native/no-inline-styles': 'warn',
2021-02-20 09:08:35 -07:00
'react-native/no-color-literals': 'off',
2021-02-19 08:20:19 -07:00
'react-native/no-raw-text': 'off',
'react-native/no-single-element-style-arrays': 'warn',
// react hooks
'react-hooks/exhaustive-deps': [
'warn',
{
additionalHooks: '(useDerivedValue|useAnimatedStyle|useAnimatedProps|useWorkletCallback)',
},
],
},
env: {
node: true,
},
};