Last active
April 24, 2023 19:30
-
-
Save SeiwonPark/356dbda825cdf34dd747ec7c4bf999bb to your computer and use it in GitHub Desktop.
eslint + prettier for typescript
This file contains 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
module.exports = { | |
env: { | |
es2021: true, | |
node: true, | |
}, | |
extends: ['prettier'], | |
overrides: [], | |
plugins: ['prettier'], | |
parserOptions: { | |
ecmaVersion: 'latest', | |
sourceType: 'module', | |
}, | |
rules: { | |
'prettier/prettier': 'warn', | |
}, | |
}; |
Author
SeiwonPark
commented
Feb 23, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment