UNPKG

react-native-template-agile-rn

Version:

<h3 align="center"> <b>Agile RN</b> is a <b>React Native ⚛ template</b> that was created to <i>speed up project start-up</i> as well as make <i>app development easier</i>. <h3>

42 lines (41 loc) 889 B
module.exports = { env: { es6: true, }, extends: ['airbnb', 'prettier', 'prettier/react'], globals: { Atomics: 'readonly', SharedArrayBuffer: 'readonly', __DEV__: 'readonly', }, parserOptions: 'babel-eslint', parserOptions: { ecmaFeatures: { jsx: true, }, ecmaVersion: 2018, sourceType: 'module', }, plugins: ['react', 'prettier'], rules: { 'prettier/prettier': 'error', 'react/jsx-filename-extension': [ 'warn', { extensions: ['.jsx', '.js'], }, ], 'import/prefer-default-export': 0, 'no-param-reassign': 0, 'no-console': 0, 'react/jsx-props-no-spreading': 0, 'no-use-before-define': 0, 'no-underscore-dangle': 0, 'react/forbid-prop-types': 0, }, settings: { 'import/resolver': { 'babel-plugin-root-import': { rootPathSuffix: 'src' }, }, }, };