You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.2 KiB
59 lines
1.2 KiB
const eslintrc = {
|
|
extends: ['eslint-config-airbnb'],
|
|
env: {
|
|
browser: true,
|
|
node: true,
|
|
mocha: true,
|
|
jest: true,
|
|
es6: true,
|
|
},
|
|
parser: 'babel-eslint',
|
|
parserOptions: {
|
|
ecmaVersion: 6,
|
|
ecmaFeatures: {
|
|
jsx: true,
|
|
experimentalObjectRestSpread: true,
|
|
},
|
|
},
|
|
plugins: [
|
|
'markdown',
|
|
'react',
|
|
'babel',
|
|
],
|
|
rules: {
|
|
'func-names': 0,
|
|
'arrow-body-style': 0,
|
|
'react/sort-comp': 0,
|
|
'react/prop-types': 0,
|
|
'react/jsx-first-prop-new-line': 0,
|
|
'react/jsx-filename-extension': [1, { extensions: ['.js', '.jsx', '.md'] }],
|
|
'import/no-unresolved': 0,
|
|
'import/no-extraneous-dependencies': 0,
|
|
'no-param-reassign': 0,
|
|
'no-return-assign': 0,
|
|
'max-len': 0,
|
|
'consistent-return': 0,
|
|
'no-redeclare': 0,
|
|
'react/require-extension': 0,
|
|
},
|
|
};
|
|
|
|
if (process.env.RUN_ENV === 'DEMO') {
|
|
eslintrc.globals = {
|
|
React: true,
|
|
ReactDOM: true,
|
|
mountNode: true,
|
|
};
|
|
|
|
Object.assign(eslintrc.rules, {
|
|
'no-console': 0,
|
|
'eol-last': 0,
|
|
'prefer-rest-params': 0,
|
|
'react/no-multi-comp': 0,
|
|
'react/prefer-es6-class': 0,
|
|
'jsx-a11y/href-no-hash': 0,
|
|
'import/newline-after-import': 0,
|
|
});
|
|
}
|
|
|
|
module.exports = eslintrc;
|
|
|