Skip to content

Instantly share code, notes, and snippets.

@mauryaratan
Created January 31, 2018 09:37
Show Gist options
  • Save mauryaratan/24b773b0c625410ca4aa69a7e1242773 to your computer and use it in GitHub Desktop.
Save mauryaratan/24b773b0c625410ca4aa69a7e1242773 to your computer and use it in GitHub Desktop.
ESLint configuration.
{
"root": true,
"env": {
"browser": true,
"es6": true
},
"plugins": [
"wordpress",
"async"
],
"extends": [
"eslint:recommended",
"plugin:wordpress/recommended"
],
"parserOptions": {
"ecmaVersion": 2017,
"ecmaFeatures": {
"experimentalObjectRestSpread": true,
"jsx": true
},
"sourceType": "module"
},
"rules": {
"async/missing-await-in-async-fn": 1
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment