Skip to content

Commit

Permalink
Fix eslint rule regarding double quotes for strings
Browse files Browse the repository at this point in the history
  • Loading branch information
hsjoberg committed Sep 4, 2024
1 parent 464a338 commit 3f43663
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
5 changes: 4 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
module.exports = {
root: true,
extends: '@react-native',
extends: "@react-native",
rules: {
quotes: "off",
},
};
8 changes: 0 additions & 8 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,3 @@
// module.exports = {
// arrowParens: 'avoid',
// bracketSameLine: true,
// bracketSpacing: false,
// singleQuote: true,
// trailingComma: 'all',
// };

module.exports = {
trailingComma: "all",
tabWidth: 2,
Expand Down

0 comments on commit 3f43663

Please sign in to comment.