mercury-parser/.eslintrc
Adam Pash e4b057f9ea
chore: update node and some deps (#209)
* chore: update .nvmrc

* added prettier and pre-commit hooks

* update docker image to new node

* add karma-cli to get web tests working

* explictly install karma... seems to fix problem

* remove pre-built phantomjs

* swap install order
2019-01-16 16:03:36 -08:00

45 lines
909 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", "prettier"],
"plugins": [
"babel"
],
"globals": {
/* mocha */
"describe",
"it",
"fit",
"jasmine",
"beforeEach",
"beforeAll",
"afterAll",
},
"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,
"camelcase": 0,
"no-multiple-empty-lines": [
"error", {"max": 1, "maxEOF": 0, "maxBOF": 0}
],
},
"options": {
"no-multiple-empty-lines": {
"max": 1,
"maxEOF": 0,
},
},
"settings": {
"import/resolver": {
"babel-module": {}
}
},
}