Skip to content

Instantly share code, notes, and snippets.

@arnu515
Created June 14, 2021 14:00
Show Gist options
  • Save arnu515/1134cd112061a4739421292c07708d66 to your computer and use it in GitHub Desktop.
Save arnu515/1134cd112061a4739421292c07708d66 to your computer and use it in GitHub Desktop.
.eslintrc.cjs and .prettierrc
module.exports = {
root: true,
extends: ["eslint:recommended", "prettier"],
ignorePatterns: ["*.cjs"],
rules: {},
env: {
es2017: true,
node: true
}
};
{
"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