UNPKG

kubric

Version:

Android's co-ordinator layout ported to work on react native (iOS and Android)

30 lines (29 loc) 762 B
module.exports = { settings: { react: { version: 'detect' } }, 'extends': ['plugin:@typescript-eslint/recommended', 'plugin:react-native/all', 'plugin:react/recommended', 'plugin:@typescript-eslint/recommended-requiring-type-checking'], 'parser': '@typescript-eslint/parser', parserOptions: { ecmaFeatures: { jsx: true }, project: 'tsconfig.json', sourceType: 'module' }, 'plugins': ["@typescript-eslint"], 'env': { 'jest': true, }, 'rules': { 'no-use-before-define': 'off', 'react/jsx-filename-extension': 'off', 'react/prop-types': 'off', 'comma-dangle': 'off' }, 'globals': { "fetch": false } }