Created
May 15, 2020 16:51
-
-
Save tkssharma/ff4be545dfc56b239772b01842d68499 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
arrowParens: 'avoid', | |
bracketSpacing: true, | |
htmlWhitespaceSensitivity: 'css', | |
jsxBracketSameLine: false, | |
printWidth: 80, | |
proseWrap: 'preserve', | |
requirePragma: false, | |
semi: true, | |
singleQuote: true, | |
tabWidth: 2, | |
endOfLine: 'auto', | |
trailingComma: 'all', | |
useTabs: false, | |
overrides: [ | |
{ | |
files: '*.json', | |
options: { | |
printWidth: 200, | |
}, | |
}, | |
], | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment