├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── eslint.config.js ├── package.json ├── test-prettier.sh ├── tests ├── App.tsx ├── BadFormatting.tsx └── PrettierTest.tsx ├── tsconfig.base.json ├── tsconfig.json └── yarn.lock /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcandillon/eslint-config-react-native-wcandillon/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcandillon/eslint-config-react-native-wcandillon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcandillon/eslint-config-react-native-wcandillon/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcandillon/eslint-config-react-native-wcandillon/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcandillon/eslint-config-react-native-wcandillon/HEAD/package.json -------------------------------------------------------------------------------- /test-prettier.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcandillon/eslint-config-react-native-wcandillon/HEAD/test-prettier.sh -------------------------------------------------------------------------------- /tests/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcandillon/eslint-config-react-native-wcandillon/HEAD/tests/App.tsx -------------------------------------------------------------------------------- /tests/BadFormatting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcandillon/eslint-config-react-native-wcandillon/HEAD/tests/BadFormatting.tsx -------------------------------------------------------------------------------- /tests/PrettierTest.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcandillon/eslint-config-react-native-wcandillon/HEAD/tests/PrettierTest.tsx -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcandillon/eslint-config-react-native-wcandillon/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcandillon/eslint-config-react-native-wcandillon/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcandillon/eslint-config-react-native-wcandillon/HEAD/yarn.lock --------------------------------------------------------------------------------