Skip to content

Instantly share code, notes, and snippets.

@barhoring
Created June 7, 2021 09:45
Show Gist options
  • Save barhoring/33ef680a4fd0d56348f231238831ebb9 to your computer and use it in GitHub Desktop.
Save barhoring/33ef680a4fd0d56348f231238831ebb9 to your computer and use it in GitHub Desktop.
ESLint + Prettier + Babel configuration
{
"plugins": ["syntax-dynamic-import"]
}
{
"extends": ["airbnb", "plugin:prettier/recommended"],
"plugins": ["@babel", "import", "prettier"],
"parser": "@babel/eslint-parser",
"env": {
"browser": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 2020,
"allowImportExportEverywhere": true
}
}
{
"printWidth": 85,
"arrowParens": "always",
"semi": false,
"tabWidth": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment