You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mercury-parser/.eslintrc

40 lines
893 B
Plaintext

// Use this file as a starting point for your project's .eslintrc.
// Copy this file, and add rule overrides as needed.
{
"parser": "babel-eslint",
"extends": "airbnb",
"plugins": [
"babel"
],
"globals": {
/* mocha */
"describe",
"it"
},
"rules": {
"no-param-reassign": 0,
/* TODO fix this; this should work w/import/resolver below, but doesn't */
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"no-control-regex": 0,
"import/prefer-default-export": 0,
"generator-star-spacing": 0,
"babel/generator-star-spacing": 0,
"func-names": 0,
"no-useless-escape": 0,
"no-confusing-arrow": 0,
},
"settings": {
"import/resolver": {
"babel-module": {
"extensions": [".js"]
}
}
},
"parserOptions":{
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
}
}