Phecda

chore(eslint): use json config instead of js format

VSCode has prompts for json config files but not for js.
1 -module.exports = {  
2 - root: true,  
3 - extends: ['@react-native-community', 'plugin:prettier/recommended'],  
4 - parser: '@typescript-eslint/parser',  
5 - plugins: ['@typescript-eslint'],  
6 -};  
  1 +{
  2 + "root": true,
  3 + "extends": ["@react-native-community", "plugin:prettier/recommended"],
  4 + "parser": "@typescript-eslint/parser",
  5 + "plugins": ["@typescript-eslint"],
  6 + "rules": {
  7 + "@typescript-eslint/no-unused-vars": "off"
  8 + }
  9 +}