mirror of
https://github.com/postlight/mercury-parser
synced 2024-10-31 03:20:40 +00:00
eb9d0bc5e8
* Update more dependencies Bumps almost everything up, removing almost all warnings from yarn audit. Doesn't touch cheerio or jest, as they require more attention and QA still. * Adjust more dependencies, tweak build files
45 lines
939 B
Plaintext
45 lines
939 B
Plaintext
{
|
|
"parser": "babel-eslint",
|
|
"extends": ["airbnb", "prettier"],
|
|
"plugins": ["babel"],
|
|
"globals": {
|
|
"describe": true,
|
|
"it": true,
|
|
"fit": true,
|
|
"jasmine": true,
|
|
"beforeEach": true,
|
|
"beforeAll": true,
|
|
"afterAll": true
|
|
},
|
|
"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-confusing-arrow": 0,
|
|
"camelcase": 0,
|
|
"no-multiple-empty-lines": [
|
|
"error",
|
|
{ "max": 1, "maxEOF": 0, "maxBOF": 0 }
|
|
],
|
|
"import/no-unresolved": false,
|
|
"import/no-extraneous-dependencies": [
|
|
"error",
|
|
{
|
|
"devDependencies": [
|
|
"**/*.test.js",
|
|
"scripts/proxy-browser-test.js",
|
|
"rollup.config*js"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"settings": {
|
|
"import/resolver": {
|
|
"babel-module": {}
|
|
}
|
|
}
|
|
}
|