Created
June 14, 2021 14:00
-
-
Save arnu515/1134cd112061a4739421292c07708d66 to your computer and use it in GitHub Desktop.
.eslintrc.cjs and .prettierrc
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 = { | |
root: true, | |
extends: ["eslint:recommended", "prettier"], | |
ignorePatterns: ["*.cjs"], | |
rules: {}, | |
env: { | |
es2017: true, | |
node: true | |
} | |
}; |
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
{ | |
"arrowParens": "avoid", | |
"bracketSpacing": true, | |
"cursorOffset": -1, | |
"embeddedLanguageFormatting": "auto", | |
"endOfLine": "lf", | |
"printWidth": 128, | |
"semi": true, | |
"singleQuote": false, | |
"tabWidth": 2, | |
"trailingComma": "none", | |
"useTabs": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment