mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-23 10:28:12 +08:00
23 lines
476 B
JavaScript
23 lines
476 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parser: "babel-eslint",
|
|
extends: "airbnb",
|
|
env: { browser: true, commonjs: true, es6: true },
|
|
globals: { expect: true },
|
|
parserOptions: {
|
|
ecmaVersion: 6,
|
|
sourceType: "module",
|
|
ecmaFeatures: {
|
|
jsx: true,
|
|
generators: true
|
|
}
|
|
},
|
|
rules: {
|
|
"no-magic-numbers": "off",
|
|
"func-style": "off",
|
|
"arrow-parens": "off",
|
|
"no-use-before-define": "off",
|
|
"react/jsx-filename-extension": "off"
|
|
}
|
|
};
|