UNPKG

react-native-template-rocketseat

Version:

<!-- *** Obrigado por estar vendo o nosso README. Se você tiver alguma sugestão *** que possa melhorá-lo ainda mais dê um fork no repositório e crie uma Pull *** Request ou abra uma Issue com a tag "sugestão". *** Obrigado novamente! Agora vamos rodar ess

40 lines (39 loc) 962 B
{ "parser": "babel-eslint", "env": { "es6": true, "jest": true }, "extends": ["airbnb", "plugin:react-native/all"], "globals": { "Atomics": "readonly", "SharedArrayBuffer": "readonly", "__DEV__": true }, "parserOptions": { "ecmaFeatures": { "jsx": true }, "ecmaVersion": 2018, "sourceType": "module" }, "plugins": ["react", "react-native", "jsx-a11y", "import"], "rules": { "react/jsx-filename-extension": [ "error", { "extensions": [".js", ".jsx"] } ], "import/prefer-default-export": "off", "no-unused-vars": ["error", { "argsIgnorePattern": "^_" }], "react/jsx-one-expression-per-line": "off", "react-native/no-color-literals": "off", "react-native/sort-styles": "off", "global-require": "off", "react-native/no-raw-text": "off" }, "settings": { "import/resolver": { "babel-plugin-root-import": { "rootPathSuffix": "src" } } } }