mirror of
https://github.com/postlight/mercury-parser
synced 2024-10-31 03:20:40 +00:00
30 lines
610 B
Plaintext
30 lines
610 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,
|
|
"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": {}
|
|
}
|
|
},
|
|
}
|