[READ-ONLY] Mirror of https://github.com/lion-byte/eslint-config. ESLint config for personal projects
eslint-config personal-config
0

Configure Feed

Select the types of activity you want to include in your feed.

fix(eslintrc): Add remaining ESLint rules

Mark Hernandez (Nov 6, 2019, 12:11 AM -0600) a46687ce abd7f9a1

+7 -1
+7 -1
.eslintrc.json
··· 6 6 }, 7 7 "rules": { 8 8 "no-var": "error", 9 + "quotes": [ 10 + "error", 11 + "single", 12 + { "avoidEscape": true, "allowTemplateLiterals": true } 13 + ], 9 14 "react/jsx-uses-react": "error", 10 - "react/jsx-uses-vars": "error" 15 + "react/jsx-uses-vars": "error", 16 + "react/jsx-fragments": "off" 11 17 } 12 18 }